mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-28 19:26:16 +00:00
15 lines
154 B
Makefile
15 lines
154 B
Makefile
LIBRARIES = ntdll kernel32
|
|
|
|
BASE_CFLAGS = -I../include
|
|
|
|
all: $(LIBRARIES)
|
|
|
|
ntdll: dummy
|
|
make -C ntdll
|
|
|
|
kernel32: dummy
|
|
make -C kernel32
|
|
|
|
dummy:
|
|
|