move make.mk and rules.mk to build_system/make

This commit is contained in:
hathach
2023-11-23 20:19:14 +07:00
parent 7213b8abb1
commit 26ca48e7a7
34 changed files with 65 additions and 65 deletions

View File

@@ -1,4 +1,4 @@
include ../../make.mk
include ../../build_system/make/make.mk
FREERTOS_SRC = lib/FreeRTOS-Kernel
FREERTOS_PORTABLE_PATH= $(FREERTOS_SRC)/portable/$(if $(USE_IAR),IAR,GCC)
@@ -31,4 +31,4 @@ SRC_C += \
SRC_S += \
$(subst $(TOP)/,,$(wildcard $(TOP)/$(FREERTOS_PORTABLE_SRC)/*.s))
include ../../rules.mk
include ../../build_system/make/rules.mk