mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-10 08:06:48 +00:00
15 lines
203 B
Makefile
15 lines
203 B
Makefile
|
|
CFLAGS += -I .
|
|
|
|
kernel_common_subdirs:= math
|
|
|
|
ECHO:
|
|
@echo "$@"
|
|
|
|
$(kernel_common_subdirs): ECHO
|
|
|
|
$(MAKE) -C $@ all CFLAGS="$(CFLAGS)" ASFLAGS="$(ASFLAGS)" PIC="$(PIC)"
|
|
|
|
all: $(kernel_common_subdirs)
|
|
|