mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-10 12:16:48 +00:00
11 lines
243 B
Makefile
11 lines
243 B
Makefile
|
|
user_libs_sub_dirs=libc libsystem libKeyboard
|
|
|
|
|
|
all:
|
|
@list='$(user_libs_sub_dirs)'; for subdir in $$list; do \
|
|
echo "make all in $$subdir";\
|
|
cd $$subdir;\
|
|
$(MAKE) all CFLAGS="$(CFLAGS) -I $(shell pwd)";\
|
|
cd ..;\
|
|
done
|