mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-11 13:16:47 +00:00
13 lines
231 B
Makefile
13 lines
231 B
Makefile
|
|
CFLAGS += -I .
|
|
|
|
kernel_common_subdirs:=libELF
|
|
|
|
all:
|
|
@list='$(kernel_common_subdirs)'; for subdir in $$list; do \
|
|
echo "make all in $$subdir";\
|
|
cd $$subdir;\
|
|
$(MAKE) all CFLAGS="$(CFLAGS)";\
|
|
cd ..;\
|
|
done
|