Makefile 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. # ---------------------------------- #
  2. # GCC Bulid command log config #
  3. # ---------------------------------- #
  4. #CMD_LOG = 1
  5. # echo suspend
  6. ifdef CMD_LOG
  7. NO_ECHO =
  8. else
  9. NO_ECHO = @
  10. endif
  11. SYSTEM := $(filter Windows_NT, $(OS))
  12. PROJECT_NAME := fr8000_project
  13. # ---------------------------------- #
  14. # Path config #
  15. # ---------------------------------- #
  16. TOP_DIR := ../../../..
  17. PROJECT_DIR := ../code
  18. OBJECT_DIR := Objects
  19. # ---------------------------------- #
  20. # Toolchain config #
  21. # ---------------------------------- #
  22. TOOLCHAIN := arm-none-eabi
  23. CC := $(TOOLCHAIN)-gcc
  24. AS := $(TOOLCHAIN)-as
  25. LD := $(TOOLCHAIN)-ld
  26. OBJDUMP := $(TOOLCHAIN)-objdump
  27. OBJCOPY := $(TOOLCHAIN)-objcopy
  28. SIZE := $(TOOLCHAIN)-size
  29. # ---------------------------------- #
  30. # ld/lib config #
  31. # ---------------------------------- #
  32. LD := $(TOP_DIR)/components/toolchain/gcc/ldscript.ld
  33. LD_C := $(TOP_DIR)/components/ble/library/syscall_gcc.txt
  34. LIB := $(TOP_DIR)/components/ble/library/libfr800x_stack.a
  35. # ---------------------------------- #
  36. # Source files config #
  37. # ---------------------------------- #
  38. SRC_FILES += $(TOP_DIR)/components/driver/driver_pmu.c
  39. SRC_FILES += $(TOP_DIR)/examples/none_evm/ble_simple_peripheral/code/proj_main.c
  40. SRC_FILES += $(TOP_DIR)/examples/none_evm/ble_simple_peripheral/code/ble_simple_peripheral.c
  41. SRC_FILES += $(TOP_DIR)/components/ble/profiles/ble_simple_profile/simple_gatt_service.c
  42. SRC_FILES += $(TOP_DIR)/components/modules/common/src/co_log.c
  43. SRC_FILES += $(TOP_DIR)/components/toolchain/gcc/boot_vectors.c
  44. # ---------------------------------- #
  45. # Include path config #
  46. # ---------------------------------- #
  47. INC_PATH += -I"$(TOP_DIR)/components/driver/include"
  48. INC_PATH += -I"$(TOP_DIR)/components/driver/drv_common"
  49. INC_PATH += -I"$(TOP_DIR)/components/driver/components/display"
  50. INC_PATH += -I"$(TOP_DIR)/components/driver/components/spi_flash"
  51. INC_PATH += -I"$(TOP_DIR)/components/driver/components/touchpad"
  52. INC_PATH += -I"$(TOP_DIR)/components/modules/platform/include"
  53. INC_PATH += -I"$(TOP_DIR)/components/modules/platform/include/cmsis"
  54. INC_PATH += -I"$(TOP_DIR)/components/modules/common/include"
  55. INC_PATH += -I"$(TOP_DIR)/components/modules/sys/include"
  56. INC_PATH += -I"$(TOP_DIR)/components/modules/os/include"
  57. INC_PATH += -I"$(TOP_DIR)/components/ble/include"
  58. INC_PATH += -I"$(TOP_DIR)/components/ble/include/gap"
  59. INC_PATH += -I"$(TOP_DIR)/components/ble/include/gatt"
  60. INC_PATH += -I"$(TOP_DIR)/components/ble/include/mesh"
  61. INC_PATH += -I"$(TOP_DIR)/components/ble/profiles/ble_simple_profile"
  62. INC_PATH += -I"$(PROJECT_DIR)"
  63. # ----------------------------------- #
  64. # Objects files common to all targets #
  65. # ----------------------------------- #
  66. BASE_SRC = $(notdir $(SRC_FILES))
  67. BASE_OBJS = $(BASE_SRC:%.c=%.o)
  68. OBJS = $(BASE_OBJS:%.o=$(OBJECT_DIR)/%.o)
  69. BASE_ElF = $(OBJECT_DIR)/$(PROJECT_NAME).elf
  70. # ---------------------------------- #
  71. # Source files path #
  72. # ---------------------------------- #
  73. VPATH = $(dir $(SRC_FILES))
  74. # ---------------------------------- #
  75. # C flags common to all targets #
  76. # ---------------------------------- #
  77. CFLAGS += -mcpu=cortex-m3
  78. CFLAGS += -mthumb
  79. CFLAGS += -O3
  80. CFLAGS += -fmessage-length=0 -fsigned-char
  81. CFLAGS += -ffunction-sections -fdata-sections
  82. CFLAGS += -g3
  83. CFLAGS += -std=gnu11
  84. # ---------------------------------- #
  85. # LD flags common to all targets #
  86. # ---------------------------------- #
  87. LDFLAGS += -mcpu=cortex-m3
  88. LDFLAGS += -mthumb
  89. LDFLAGS += -O3
  90. LDFLAGS += -fmessage-length=0 -fsigned-char
  91. LDFLAGS += -ffunction-sections -fdata-sections
  92. LDFLAGS += -g3
  93. LDFLAGS += -Xlinker --gc-sections
  94. LDFLAGS += --specs=nosys.specs -u _printf_float
  95. # ---------------------------------- #
  96. # all target list #
  97. # ---------------------------------- #
  98. all: Target_Path Target_OBJS Target_ELF Target_DONE
  99. # ---------------------------------- #
  100. # Create Path #
  101. # ---------------------------------- #
  102. Target_Path :
  103. $(shell if [ ! -d $(OBJECT_DIR) ];then mkdir $(OBJECT_DIR); fi)
  104. # ---------------------------------- #
  105. # compile .c .s #
  106. # ---------------------------------- #
  107. Target_OBJS : $(OBJS)
  108. $(OBJECT_DIR)/%.o : %.c
  109. $(info Bulid: compiling $^)
  110. $(NO_ECHO)$(CC) $(CFLAGS) $(INC_PATH) -c -o $@ $<
  111. $(OBJECT_DIR)/%.o : %.s
  112. $(info Bulid: compiling $^)
  113. $(NO_ECHO)$(CC) $(CFLAGS) $(INC_PATH) -c -o $@ $<
  114. # ---------------------------------- #
  115. # Create Image File #
  116. # ---------------------------------- #
  117. Target_ELF : $(BASE_ElF)
  118. $(BASE_ElF) : $(OBJS)
  119. $(NO_ECHO)$(CC) $(LDFLAGS) -T $(LD) -T $(LD_C) -Wl,-Map,"$(PROJECT_NAME).map" -o $(OBJECT_DIR)/$(PROJECT_NAME).elf $^ $(LIB)
  120. $(NO_ECHO)$(OBJCOPY) -O binary -S $(OBJECT_DIR)/$(PROJECT_NAME).elf $(PROJECT_NAME).bin
  121. $(NO_ECHO)$(OBJCOPY) -O ihex -S $(OBJECT_DIR)/$(PROJECT_NAME).elf $(PROJECT_NAME).hex
  122. $(NO_ECHO)$(OBJDUMP) -D $(OBJECT_DIR)/$(PROJECT_NAME).elf > $(PROJECT_NAME).dis
  123. $(info Bulid: creating $(OBJECT_DIR)/$(PROJECT_NAME).elf)
  124. $(info Bulid: creating $(PROJECT_NAME).map)
  125. $(info Bulid: creating $(PROJECT_NAME).bin)
  126. $(info Bulid: creating $(PROJECT_NAME).hex)
  127. $(info Bulid: creating $(PROJECT_NAME).dis)
  128. # ---------------------------------- #
  129. # Output image file size #
  130. # ---------------------------------- #
  131. .PHONY : Target_DONE
  132. Target_DONE:
  133. @echo Bulid: Output image file info:
  134. $(NO_ECHO)$(SIZE) $(OBJECT_DIR)/$(PROJECT_NAME).elf
  135. @echo Bulid: $(PROJECT_NAME) make done.
  136. # ---------------------------------------- #
  137. # delete file(.o .elf .bin .dis .hex .map) #
  138. # ---------------------------------------- #
  139. .PHONY : clean
  140. clean :
  141. $(NO_ECHO)rm -rf $(OBJECT_DIR) *.elf *.bin *.dis *.hex *.map
  142. @echo delete *.o *.elf *.bin *.dis *.hex *.map