diff --git a/reactos/lib/Jamfile b/reactos/lib/Jamfile deleted file mode 100644 index 652cc6809ae..00000000000 --- a/reactos/lib/Jamfile +++ /dev/null @@ -1,5 +0,0 @@ -SubDir ROS_TOP Lib ; - -SubInclude ROS_TOP Lib Ntdll ; -SubInclude ROS_TOP Lib Advapi32 ; -SubInclude ROS_TOP Lib Kernel32 ; diff --git a/reactos/lib/makefile b/reactos/lib/makefile deleted file mode 100644 index ff986eb7c61..00000000000 --- a/reactos/lib/makefile +++ /dev/null @@ -1,19 +0,0 @@ -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