mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-10 16:26:48 +00:00
17 lines
294 B
Makefile
17 lines
294 B
Makefile
|
|
CFLAGS += -I .
|
|
|
|
ifeq ($(ARCH), __x86_64__)
|
|
kernel_arch_subdirs:=x86_64
|
|
endif
|
|
|
|
all:
|
|
@list='$(kernel_arch_subdirs)'; for subdir in $$list; do \
|
|
echo "make all in $$subdir";\
|
|
cd $$subdir;\
|
|
$(MAKE) all CFLAGS="$(CFLAGS)" PIC="$(PIC)";\
|
|
cd ..;\
|
|
done
|
|
|
|
clean:
|
|
echo "Done."
|