mirror of
https://github.com/rtlduino/RTL8710AF_GCC.git
synced 2026-07-08 12:35:39 +00:00
rtlduino rtl8710af gcc base version
This commit is contained in:
parent
7675bdb95f
commit
9c0c9edf61
2097 changed files with 779974 additions and 2 deletions
48
component/os/freertos/freertos_v8.1.2/Source/Makefile
Normal file
48
component/os/freertos/freertos_v8.1.2/Source/Makefile
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
|
||||
include $(MAKE_INCLUDE_GEN)
|
||||
|
||||
.PHONY: all clean
|
||||
|
||||
MODULE_IFLAGS = -I./include
|
||||
|
||||
|
||||
#*****************************************************************************#
|
||||
# Object FILE LIST #
|
||||
#*****************************************************************************#
|
||||
OBJS = tasks.o list.o croutine.o queue.o timers.o event_groups.o
|
||||
ifeq ($(CONFIG_RELEASE_BUILD),y)
|
||||
OBJS =
|
||||
else
|
||||
endif
|
||||
|
||||
|
||||
#*****************************************************************************#
|
||||
# RULES TO GENERATE TARGETS #
|
||||
#*****************************************************************************#
|
||||
|
||||
# Define the Rules to build the core targets
|
||||
#all: CORE_TARGETS COPY_RAM_OBJS
|
||||
all: CORE_TARGETS COPY_RAM_OBJS
|
||||
make -C portable/MemMang all
|
||||
make -C portable/GCC/ARM_CM4F all
|
||||
|
||||
|
||||
|
||||
#*****************************************************************************#
|
||||
# GENERATE OBJECT FILE
|
||||
#*****************************************************************************#
|
||||
CORE_TARGETS: $(OBJS)
|
||||
|
||||
|
||||
#*****************************************************************************#
|
||||
# RULES TO CLEAN TARGETS #
|
||||
#*****************************************************************************#
|
||||
clean:
|
||||
make -C portable/MemMang clean
|
||||
make -C portable/GCC/ARM_CM4F clean
|
||||
$(REMOVE) *.o
|
||||
$(REMOVE) *.i
|
||||
$(REMOVE) *.s
|
||||
$(REMOVE) *.d
|
||||
|
||||
-include $(DEPS)
|
||||
Loading…
Add table
Add a link
Reference in a new issue