mirror of
https://github.com/reactos/reactos.git
synced 2026-09-12 12:50:19 +08:00
15 lines
160 B
Makefile
15 lines
160 B
Makefile
LIBRARIES = ntdll kernel32
|
|
|
|
BASE_CFLAGS = -I../include
|
|
|
|
all: $(LIBRARIES)
|
|
|
|
ntdll: dummy
|
|
$(MAKE) -C ntdll
|
|
|
|
kernel32: dummy
|
|
$(MAKE) -C kernel32
|
|
|
|
dummy:
|
|
|