mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-08 22:36:48 +00:00
18 lines
340 B
Makefile
18 lines
340 B
Makefile
SUBDIRS = bootloader kernel
|
|
|
|
.PHONY: all
|
|
all:
|
|
@list='$(SUBDIRS)'; for subdir in $$list; do \
|
|
echo "make all in $$subdir";\
|
|
cd $$subdir;\
|
|
make all;\
|
|
cd ..;\
|
|
done
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
@list='$(SUBDIRS)'; for subdir in $$list; do \
|
|
echo "Clean in dir: $$subdir";\
|
|
cd $$subdir && make clean;\
|
|
cd .. ;\
|
|
done
|