mirror of
https://github.com/reactos/reactos.git
synced 2026-07-02 22:24:22 +08:00
20 lines
199 B
Makefile
20 lines
199 B
Makefile
LIBRARIES = ntdll kernel32
|
|
|
|
BASE_CFLAGS = -I../include
|
|
|
|
all: $(LIBRARIES)
|
|
|
|
ntdll: dummy
|
|
$(MAKE) -C ntdll
|
|
|
|
kernel32: dummy
|
|
$(MAKE) -C kernel32
|
|
|
|
dummy:
|
|
|
|
|
|
docu:
|
|
doxygen Doxyfile
|
|
|
|
.PHONY: docu
|