Keyboard firmwares for Atmel AVR and Cortex-M
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

lufa_build.mk 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. #
  2. # LUFA Library
  3. # Copyright (C) Dean Camera, 2012.
  4. #
  5. # dean [at] fourwalledcubicle [dot] com
  6. # www.lufa-lib.org
  7. #
  8. LUFA_BUILD_MODULES += BUILD
  9. LUFA_BUILD_TARGETS += size check-source symbol-sizes all lib elf hex lss clean mostlyclean
  10. LUFA_BUILD_MANDATORY_VARS += TARGET ARCH MCU SRC F_USB LUFA_PATH
  11. LUFA_BUILD_OPTIONAL_VARS += BOARD OPTIMIZATION C_STANDARD CPP_STANDARD F_CPU C_FLAGS CPP_FLAGS ASM_FLAGS CC_FLAGS LD_FLAGS OBJDIR OBJECT_FILES DEBUG_TYPE DEBUG_LEVEL
  12. LUFA_BUILD_PROVIDED_VARS +=
  13. LUFA_BUILD_PROVIDED_MACROS +=
  14. # -----------------------------------------------------------------------------
  15. # LUFA GCC Compiler Buildsystem Makefile Module.
  16. # -----------------------------------------------------------------------------
  17. # DESCRIPTION:
  18. # Provides a set of targets to build a C, C++ and/or Assembly application
  19. # via the AVR-GCC compiler.
  20. # -----------------------------------------------------------------------------
  21. # TARGETS:
  22. #
  23. # size - List built application size
  24. # symbol-sizes - Print application symbols from the binary ELF
  25. # file as a list sorted by size in bytes
  26. # check-source - Print a list of SRC source files that cannot
  27. # be found
  28. # all - Build application and list size
  29. # lib - Build and archive source files into a library
  30. # elf - Build application ELF debug object file
  31. # hex - Build application HEX object files
  32. # lss - Build application LSS assembly listing file
  33. # clean - Remove all project intermediatary and binary
  34. # output files
  35. # mostlyclean - Remove intermediatary output files, but
  36. # preserve binaries
  37. #
  38. # MANDATORY PARAMETERS:
  39. #
  40. # TARGET - Application name
  41. # ARCH - Device architecture name
  42. # MCU - Microcontroller device model name
  43. # SRC - List of input source files (*.c, *.cpp, *.S)
  44. # F_USB - Speed of the input clock of the USB controller
  45. # in Hz
  46. # LUFA_PATH - Path to the LUFA library core
  47. #
  48. # OPTIONAL PARAMETERS:
  49. #
  50. # BOARD - LUFA board hardware
  51. # OPTIMIZATION - Optimization level
  52. # C_STANDARD - C Language Standard to use
  53. # CPP_STANDARD - C++ Language Standard to use
  54. # F_CPU - Speed of the CPU, in Hz
  55. # C_FLAGS - Flags to pass to the C compiler only
  56. # CPP_FLAGS - Flags to pass to the C++ compiler only
  57. # ASM_FLAGS - Flags to pass to the assembler only
  58. # CC_FLAGS - Common flags to pass to the C/C++ compiler and
  59. # assembler
  60. # LD_FLAGS - Flags to pass to the linker
  61. # OBJDIR - Directory for the output object and dependency
  62. # files; if equal to ".", the output files will
  63. # be generated in the same folder as the sources
  64. # OBJECT_FILES - Extra object files to link in to the binaries
  65. # DEBUG_FORMAT - Format of the debugging information to
  66. # generate in the compiled object files
  67. # DEBUG_LEVEL - Level the debugging information to generate in
  68. # the compiled object files
  69. #
  70. # PROVIDED VARIABLES:
  71. #
  72. # (None)
  73. #
  74. # PROVIDED MACROS:
  75. #
  76. # (None)
  77. #
  78. # -----------------------------------------------------------------------------
  79. SHELL = /bin/sh
  80. ERROR_IF_UNSET ?= $(if $(filter undefined, $(origin $(strip $(1)))), $(error Makefile $(strip $(1)) value not set))
  81. ERROR_IF_EMPTY ?= $(if $(strip $($(strip $(1)))), , $(error Makefile $(strip $(1)) option cannot be blank))
  82. ERROR_IF_NONBOOL ?= $(if $(filter Y N, $($(strip $(1)))), , $(error Makefile $(strip $(1)) option must be Y or N))
  83. # Default values of optionally user-supplied variables
  84. BOARD ?= NONE
  85. OPTIMIZATION ?= s
  86. F_CPU ?=
  87. C_STANDARD ?= gnu99
  88. CPP_STANDARD ?= gnu++98
  89. C_FLAGS ?=
  90. CPP_FLAGS ?=
  91. ASM_FLAGS ?=
  92. CC_FLAGS ?=
  93. OBJDIR ?= .
  94. OBJECT_FILES ?=
  95. DEBUG_FORMAT ?= dwarf-2
  96. DEBUG_LEVEL ?= 3
  97. # Sanity check user supplied values
  98. $(foreach MANDATORY_VAR, $(LUFA_BUILD_MANDATORY_VARS), $(call ERROR_IF_UNSET, $(MANDATORY_VAR)))
  99. $(call ERROR_IF_EMPTY, MCU)
  100. $(call ERROR_IF_EMPTY, TARGET)
  101. $(call ERROR_IF_EMPTY, ARCH)
  102. $(call ERROR_IF_EMPTY, F_USB)
  103. $(call ERROR_IF_EMPTY, LUFA_PATH)
  104. $(call ERROR_IF_EMPTY, BOARD)
  105. $(call ERROR_IF_EMPTY, OPTIMIZATION)
  106. $(call ERROR_IF_EMPTY, C_STANDARD)
  107. $(call ERROR_IF_EMPTY, CPP_STANDARD)
  108. $(call ERROR_IF_EMPTY, OBJDIR)
  109. $(call ERROR_IF_EMPTY, DEBUG_FORMAT)
  110. $(call ERROR_IF_EMPTY, DEBUG_LEVEL)
  111. # Determine the utility prefix to use for the selected architecture
  112. ifeq ($(ARCH), AVR8)
  113. CROSS := avr
  114. else ifeq ($(ARCH), XMEGA)
  115. CROSS := avr
  116. $(warning The XMEGA device support is currently EXPERIMENTAL (incomplete and/or non-functional), and is included for preview purposes only.)
  117. else ifeq ($(ARCH), UC3)
  118. CROSS := avr32
  119. $(warning The UC3 device support is currently EXPERIMENTAL (incomplete and/or non-functional), and is included for preview purposes only.)
  120. else
  121. $(error Unsupported architecture "$(ARCH)")
  122. endif
  123. # Output Messages
  124. MSG_COMPILE_CMD := ' [GCC] :'
  125. MSG_ASSEMBLE_CMD := ' [GAS] :'
  126. MSG_NM_CMD := ' [NM] :'
  127. MSG_REMOVE_CMD := ' [RM] :'
  128. MSG_LINK_CMD := ' [LNK] :'
  129. MSG_ARCHIVE_CMD := ' [AR] :'
  130. MSG_SIZE_CMD := ' [SIZE] :'
  131. MSG_OBJCPY_CMD := ' [OBJCPY] :'
  132. MSG_OBJDMP_CMD := ' [OBJDMP] :'
  133. # Convert input source file list to differentiate them by type
  134. C_SOURCE := $(filter %.c, $(SRC))
  135. CPP_SOURCE := $(filter %.cpp, $(SRC))
  136. ASM_SOURCE := $(filter %.S, $(SRC))
  137. # Create a list of unknown source file types, if any are found throw an error
  138. UNKNOWN_SOURCE := $(filter-out $(C_SOURCE) $(CPP_SOURCE) $(ASM_SOURCE), $(SRC))
  139. ifneq ($(UNKNOWN_SOURCE),)
  140. $(error Unknown input source file formats: $(UNKNOWN_SOURCE))
  141. endif
  142. # Convert input source filenames into a list of required output object files
  143. OBJECT_FILES += $(addsuffix .o, $(basename $(SRC)))
  144. ifneq ($(OBJDIR),.)
  145. $(shell mkdir $(OBJDIR) 2> /dev/null)
  146. VPATH += $(dir $(SRC))
  147. OBJECT_FILES := $(addprefix $(patsubst %/,%,$(OBJDIR))/, $(notdir $(OBJECT_FILES)))
  148. # Check if any object file (without path) appears more than once in the object file list
  149. ifneq ($(words $(sort $(OBJECT_FILES))), $(words $(OBJECT_FILES)))
  150. $(error Cannot build with OBJDIR parameter set - one or more object file name is not unique)
  151. endif
  152. endif
  153. # Create a list of dependency files from the list of object files
  154. DEPENDENCY_FILES := $(OBJECT_FILES:%.o=%.d)
  155. # Create a list of common flags to pass to the compiler/linker/assembler
  156. BASE_CC_FLAGS := -pipe -g$(DEBUG_FORMAT) -g$(DEBUG_LEVEL)
  157. ifeq ($(ARCH), AVR8)
  158. BASE_CC_FLAGS += -mmcu=$(MCU) -fshort-enums -fno-inline-small-functions -fpack-struct
  159. else ifeq ($(ARCH), XMEGA)
  160. BASE_CC_FLAGS += -mmcu=$(MCU) -fshort-enums -fno-inline-small-functions -fpack-struct
  161. else ifeq ($(ARCH), UC3)
  162. BASE_CC_FLAGS += -mpart=$(MCU:at32%=%) -masm-addr-pseudos
  163. endif
  164. BASE_CC_FLAGS += -Wall -fno-strict-aliasing -funsigned-char -funsigned-bitfields -ffunction-sections
  165. BASE_CC_FLAGS += -I. -I$(patsubst %/,%,$(LUFA_PATH))/..
  166. BASE_CC_FLAGS += -DARCH=ARCH_$(ARCH) -DBOARD=BOARD_$(BOARD) -DF_USB=$(F_USB)UL
  167. ifneq ($(F_CPU),)
  168. BASE_CC_FLAGS += -DF_CPU=$(F_CPU)UL
  169. endif
  170. # Additional language specific compiler flags
  171. BASE_C_FLAGS := -x c -O$(OPTIMIZATION) -std=$(C_STANDARD) -Wstrict-prototypes
  172. BASE_CPP_FLAGS := -x c++ -O$(OPTIMIZATION) -std=$(CPP_STANDARD)
  173. BASE_ASM_FLAGS := -x assembler-with-cpp
  174. # Create a list of flags to pass to the linker
  175. BASE_LD_FLAGS := -lm -Wl,-Map=$(TARGET).map,--cref -Wl,--gc-sections -Wl,--relax
  176. ifeq ($(ARCH), AVR8)
  177. BASE_LD_FLAGS += -mmcu=$(MCU)
  178. else ifeq ($(ARCH), XMEGA)
  179. BASE_LD_FLAGS += -mmcu=$(MCU)
  180. else ifeq ($(ARCH), UC3)
  181. BASE_LD_FLAGS += -mpart=$(MCU:at32%=%) --rodata-writable --direct-data
  182. endif
  183. # Determine flags to pass to the size utility based on its reported features (only invoke if size target required)
  184. size: SIZE_MCU_FLAG := $(shell $(CROSS)-size --help | grep -- --mcu > /dev/null && echo --mcu=$(MCU) )
  185. size: SIZE_FORMAT_FLAG := $(shell $(CROSS)-size --help | grep -- --format=.*avr > /dev/null && echo --format=avr )
  186. build_begin:
  187. @echo ""
  188. @echo Begin compilation of project \"$(TARGET)\"...
  189. @echo ""
  190. build_end:
  191. @echo Finished building project \"$(TARGET)\".
  192. @echo ""
  193. gcc-version:
  194. @$(CROSS)-gcc --version
  195. check-source:
  196. @for f in $(SRC); do \
  197. if [ ! -f $$f ]; then \
  198. echo "Error: Source file not found: $$f"; \
  199. exit 1; \
  200. fi; \
  201. done
  202. size: $(TARGET).elf
  203. @echo $(MSG_SIZE_CMD) Determining size of \"$<\"
  204. @echo ""
  205. $(CROSS)-size $(SIZE_MCU_FLAG) $(SIZE_FORMAT_FLAG) $< ; 2>/dev/null;
  206. symbol-sizes: $(TARGET).elf
  207. @echo $(MSG_NM_CMD) Extracting \"$<\" symbols with decimal byte sizes
  208. $(CROSS)-nm --size-sort --demangle --radix=d $<
  209. mostlyclean:
  210. @echo $(MSG_REMOVE_CMD) Removing object files of \"$(TARGET)\"
  211. rm -f $(OBJECT_FILES)
  212. @echo $(MSG_REMOVE_CMD) Removing dependency files of \"$(TARGET)\"
  213. rm -f $(DEPENDENCY_FILES)
  214. clean: mostlyclean
  215. @echo $(MSG_REMOVE_CMD) Removing output files of \"$(TARGET)\"
  216. rm -f $(TARGET).elf $(TARGET).hex $(TARGET).eep $(TARGET).map $(TARGET).lss $(TARGET).sym $(TARGET).a
  217. all: build_begin check-source gcc-version elf hex lss sym size build_end
  218. lib: lib$(TARGET).a
  219. elf: $(TARGET).elf
  220. hex: $(TARGET).hex $(TARGET).eep
  221. lss: $(TARGET).lss
  222. sym: $(TARGET).sym
  223. $(OBJDIR)/%.o: %.c $(MAKEFILE_LIST)
  224. @echo $(MSG_COMPILE_CMD) Compiling C file \"$(notdir $<)\"
  225. $(CROSS)-gcc -c $(BASE_CC_FLAGS) $(BASE_C_FLAGS) $(CC_FLAGS) $(C_FLAGS) -MMD -MP -MF $(@:%.o=%.d) $< -o $@
  226. $(OBJDIR)/%.o: %.cpp $(MAKEFILE_LIST)
  227. @echo $(MSG_COMPILE_CMD) Compiling C++ file \"$(notdir $<)\"
  228. $(CROSS)-gcc -c $(BASE_CC_FLAGS) $(BASE_CPP_FLAGS) $(CC_FLAGS) $(CPP_FLAGS) -MMD -MP -MF $(@:%.o=%.d) $< -o $@
  229. $(OBJDIR)/%.o: %.S $(MAKEFILE_LIST)
  230. @echo $(MSG_ASSEMBLE_CMD) Assembling \"$(notdir $<)\"
  231. $(CROSS)-gcc -c $(BASE_CC_FLAGS) $(BASE_ASM_FLAGS) $(CC_FLAGS) $(ASM_FLAGS) -MMD -MP -MF $(@:%.o=%.d) $< -o $@
  232. .PRECIOUS : $(OBJECT_FILES)
  233. .SECONDARY : %.a
  234. %.a: $(OBJECT_FILES)
  235. @echo $(MSG_ARCHIVE_CMD) Archiving object files into \"$@\"
  236. $(CROSS)-ar rcs $@ $(OBJECT_FILES)
  237. .PRECIOUS : $(OBJECT_FILES)
  238. .SECONDARY : %.elf
  239. %.elf: $(OBJECT_FILES)
  240. @echo $(MSG_LINK_CMD) Linking object files into \"$@\"
  241. $(CROSS)-gcc $(BASE_LD_FLAGS) $(LD_FLAGS) $^ -o $@
  242. %.hex: %.elf
  243. @echo $(MSG_OBJCPY_CMD) Extracting HEX file data from \"$<\"
  244. $(CROSS)-objcopy -O ihex -R .eeprom -R .fuse -R .lock -R .signature $< $@
  245. %.eep: %.elf
  246. @echo $(MSG_OBJCPY_CMD) Extracting EEP file data from \"$<\"
  247. $(CROSS)-objcopy -j .eeprom --set-section-flags=.eeprom="alloc,load" --change-section-lma .eeprom=0 --no-change-warnings -O ihex $< $@ || exit 0
  248. %.lss: %.elf
  249. @echo $(MSG_OBJDMP_CMD) Extracting LSS file data from \"$<\"
  250. $(CROSS)-objdump -h -S -z $< > $@
  251. %.sym: %.elf
  252. @echo $(MSG_NM_CMD) Extracting SYM file data from \"$<\"
  253. $(CROSS)-nm -n $< > $@
  254. # Include build dependency files
  255. -include $(DEPENDENCY_FILES)
  256. # Phony build targets for this module
  257. .PHONY: build_begin build_end gcc-version check-source size symbol-sizes lib elf hex lss clean mostlyclean