mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-31 04:13:37 +00: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:
|
|
|