DragonOS/kernel/common/Makefile

13 lines
231 B
Makefile
Raw Normal View History

2022-05-18 10:27:00 +00:00
CFLAGS += -I .
kernel_common_subdirs:=libELF
all:
@list='$(kernel_common_subdirs)'; for subdir in $$list; do \
echo "make all in $$subdir";\
cd $$subdir;\
2022-05-18 13:13:23 +00:00
$(MAKE) all CFLAGS="$(CFLAGS)";\
2022-05-18 10:27:00 +00:00
cd ..;\
done