3 # Copyright (C) Dean Camera, 2013.
5 # dean [at] fourwalledcubicle [dot] com
9 LUFA_BUILD_MODULES
+= BUILD
10 LUFA_BUILD_TARGETS
+= size symbol-sizes
all lib elf hex lss
clean mostlyclean
11 LUFA_BUILD_MANDATORY_VARS
+= TARGET ARCH MCU SRC F_USB LUFA_PATH
12 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 LINKER_RELAXATIONS
13 LUFA_BUILD_PROVIDED_VARS
+=
14 LUFA_BUILD_PROVIDED_MACROS
+=
16 # -----------------------------------------------------------------------------
17 # LUFA GCC Compiler Buildsystem Makefile Module.
18 # -----------------------------------------------------------------------------
20 # Provides a set of targets to build a C, C++ and/or Assembly application
21 # via the AVR-GCC compiler.
22 # -----------------------------------------------------------------------------
25 # size - List built application size
26 # symbol-sizes - Print application symbols from the binary ELF
27 # file as a list sorted by size in bytes
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
35 # mostlyclean - Remove intermediatary output files, but
37 # <filename>.s - Compile C/C++ source file into an assembly file
38 # for manual code inspection
40 # MANDATORY PARAMETERS:
42 # TARGET - Application name
43 # ARCH - Device architecture name
44 # MCU - Microcontroller device model name
45 # SRC - List of input source files (*.c, *.cpp, *.S)
46 # F_USB - Speed of the input clock of the USB controller
48 # LUFA_PATH - Path to the LUFA library core
50 # OPTIONAL PARAMETERS:
52 # BOARD - LUFA board hardware
53 # OPTIMIZATION - Optimization level
54 # C_STANDARD - C Language Standard to use
55 # CPP_STANDARD - C++ Language Standard to use
56 # F_CPU - Speed of the CPU, in Hz
57 # C_FLAGS - Flags to pass to the C compiler only
58 # CPP_FLAGS - Flags to pass to the C++ compiler only
59 # ASM_FLAGS - Flags to pass to the assembler only
60 # CC_FLAGS - Common flags to pass to the C/C++ compiler and
62 # LD_FLAGS - Flags to pass to the linker
63 # LINKER_RELAXATIONS - Enable or disable linker relaxations to
64 # decrease binary size (note: can cause link
65 # failures on systems with an unpatched binutils)
66 # OBJDIR - Directory for the output object and dependency
67 # files; if equal to ".", the output files will
68 # be generated in the same folder as the sources
69 # OBJECT_FILES - Extra object files to link in to the binaries
70 # DEBUG_FORMAT - Format of the debugging information to
71 # generate in the compiled object files
72 # DEBUG_LEVEL - Level the debugging information to generate in
73 # the compiled object files
83 # -----------------------------------------------------------------------------
87 ERROR_IF_UNSET ?
= $(if
$(filter undefined
, $(origin $(strip $(1)))), $(error Makefile
$(strip $(1)) value not set
))
88 ERROR_IF_EMPTY ?
= $(if
$(strip $($(strip $(1)))), , $(error Makefile
$(strip $(1)) option cannot be blank
))
89 ERROR_IF_NONBOOL ?
= $(if
$(filter Y N
, $($(strip $(1)))), , $(error Makefile
$(strip $(1)) option must be Y or N
))
91 # Default values of optionally user-supplied variables
96 CPP_STANDARD ?
= gnu
++98
103 DEBUG_FORMAT ?
= dwarf-2
105 LINKER_RELAXATIONS ?
= Y
107 # Sanity check user supplied values
108 $(foreach MANDATORY_VAR
, $(LUFA_BUILD_MANDATORY_VARS
), $(call ERROR_IF_UNSET
, $(MANDATORY_VAR
)))
109 $(call ERROR_IF_EMPTY
, MCU
)
110 $(call ERROR_IF_EMPTY
, TARGET
)
111 $(call ERROR_IF_EMPTY
, ARCH
)
112 $(call ERROR_IF_EMPTY
, F_USB
)
113 $(call ERROR_IF_EMPTY
, LUFA_PATH
)
114 $(call ERROR_IF_EMPTY
, BOARD
)
115 $(call ERROR_IF_EMPTY
, OPTIMIZATION
)
116 $(call ERROR_IF_EMPTY
, C_STANDARD
)
117 $(call ERROR_IF_EMPTY
, CPP_STANDARD
)
118 $(call ERROR_IF_EMPTY
, OBJDIR
)
119 $(call ERROR_IF_EMPTY
, DEBUG_FORMAT
)
120 $(call ERROR_IF_EMPTY
, DEBUG_LEVEL
)
121 $(call ERROR_IF_NONBOOL
, LINKER_RELAXATIONS
)
123 # Determine the utility prefix to use for the selected architecture
126 else ifeq ($(ARCH
), XMEGA
)
128 $(warning The XMEGA device support is currently EXPERIMENTAL
(incomplete and
/or non-functional
), and is included for preview purposes only.
)
129 else ifeq ($(ARCH
), UC3
)
131 $(warning The UC3 device support is currently EXPERIMENTAL
(incomplete and
/or non-functional
), and is included for preview purposes only.
)
133 $(error Unsupported architecture
"$(ARCH)")
137 MSG_INFO_MESSAGE
:= ' [INFO] :'
138 MSG_COMPILE_CMD
:= ' [GCC] :'
139 MSG_ASSEMBLE_CMD
:= ' [GAS] :'
140 MSG_NM_CMD
:= ' [NM] :'
141 MSG_REMOVE_CMD
:= ' [RM] :'
142 MSG_LINK_CMD
:= ' [LNK] :'
143 MSG_ARCHIVE_CMD
:= ' [AR] :'
144 MSG_SIZE_CMD
:= ' [SIZE] :'
145 MSG_OBJCPY_CMD
:= ' [OBJCPY] :'
146 MSG_OBJDMP_CMD
:= ' [OBJDMP] :'
148 # Convert input source file list to differentiate them by type
149 C_SOURCE
:= $(filter %.c
, $(SRC
))
150 CPP_SOURCE
:= $(filter %.
cpp, $(SRC
))
151 ASM_SOURCE
:= $(filter %.S
, $(SRC
))
153 # Create a list of unknown source file types, if any are found throw an error
154 UNKNOWN_SOURCE
:= $(filter-out $(C_SOURCE
) $(CPP_SOURCE
) $(ASM_SOURCE
), $(SRC
))
155 ifneq ($(UNKNOWN_SOURCE
),)
156 $(error Unknown input source file formats
: $(UNKNOWN_SOURCE
))
159 # Convert input source filenames into a list of required output object files
160 OBJECT_FILES
+= $(addsuffix .o
, $(basename $(SRC
)))
162 # Check if an output object file directory was specified instead of the input file location
164 # Prefix all the object filenames with the output object file directory path
165 OBJECT_FILES
:= $(addprefix $(patsubst %/,%,$(OBJDIR
))/, $(notdir $(OBJECT_FILES
)))
167 # Check if any object file (without path) appears more than once in the object file list
168 ifneq ($(words $(sort $(OBJECT_FILES
))), $(words $(OBJECT_FILES
)))
169 $(error Cannot build with OBJDIR parameter set
- one or more object file name is not unique
)
172 # Create the output object file directory if it does not exist and add it to the virtual path list
173 $(shell mkdir
$(OBJDIR
) 2> /dev
/null
)
174 VPATH
+= $(dir $(SRC
))
177 # Create a list of dependency files from the list of object files
178 DEPENDENCY_FILES
:= $(OBJECT_FILES
:%.o
=%.d
)
180 # Create a list of common flags to pass to the compiler/linker/assembler
181 BASE_CC_FLAGS
:= -pipe
-g
$(DEBUG_FORMAT
) -g
$(DEBUG_LEVEL
)
183 BASE_CC_FLAGS
+= -mmcu
=$(MCU
) -fshort-enums
-fno-inline-small-functions
-fpack-struct
184 else ifeq ($(ARCH
), XMEGA
)
185 BASE_CC_FLAGS
+= -mmcu
=$(MCU
) -fshort-enums
-fno-inline-small-functions
-fpack-struct
186 else ifeq ($(ARCH
), UC3
)
187 BASE_CC_FLAGS
+= -mpart
=$(MCU
:at32
%=%) -masm-addr-pseudos
189 BASE_CC_FLAGS
+= -Wall
-fno-strict-aliasing
-funsigned-char
-funsigned-bitfields
-ffunction-sections
190 BASE_CC_FLAGS
+= -I.
-I
$(patsubst %/,%,$(LUFA_PATH
))/..
191 BASE_CC_FLAGS
+= -DARCH
=ARCH_
$(ARCH
) -DBOARD
=BOARD_
$(BOARD
) -DF_USB
=$(F_USB
)UL
193 BASE_CC_FLAGS
+= -DF_CPU
=$(F_CPU
)UL
196 # Additional language specific compiler flags
197 BASE_C_FLAGS
:= -x c
-O
$(OPTIMIZATION
) -std
=$(C_STANDARD
) -Wstrict-prototypes
198 BASE_CPP_FLAGS
:= -x c
++ -O
$(OPTIMIZATION
) -std
=$(CPP_STANDARD
)
199 BASE_ASM_FLAGS
:= -x assembler-with-cpp
201 # Create a list of flags to pass to the linker
202 BASE_LD_FLAGS
:= -lm
-Wl
,-Map
=$(TARGET
).map
,--cref
-Wl
,--gc-sections
203 ifeq ($(LINKER_RELAXATIONS
), Y
)
204 BASE_LD_FLAGS
+= -Wl
,--relax
207 BASE_LD_FLAGS
+= -mmcu
=$(MCU
)
208 else ifeq ($(ARCH
), XMEGA
)
209 BASE_LD_FLAGS
+= -mmcu
=$(MCU
)
210 else ifeq ($(ARCH
), UC3
)
211 BASE_LD_FLAGS
+= -mpart
=$(MCU
:at32
%=%) --rodata-writable
--direct-data
214 # Determine flags to pass to the size utility based on its reported features (only invoke if size target required)
215 # and on an architecture where this non-standard patch is available
217 size
: SIZE_MCU_FLAG
:= $(shell $(CROSS
)-size
--help | grep
-- --mcu
> /dev
/null
&& echo
--mcu
=$(MCU
) )
218 size
: SIZE_FORMAT_FLAG
:= $(shell $(CROSS
)-size
--help | grep
-- --format
=.
*avr
> /dev
/null
&& echo
--format
=avr
)
221 # Pre-build informational target, to give compiler and project name information when building
223 @echo
$(MSG_INFO_MESSAGE
) Begin compilation of project
\"$(TARGET
)\"...
225 @
$(CROSS
)-gcc
--version
227 # Post-build informational target, to project name information when building has completed
229 @echo
$(MSG_INFO_MESSAGE
) Finished building project
\"$(TARGET
)\".
231 # Prints size information of a compiled application (FLASH, RAM and EEPROM usages)
233 @echo
$(MSG_SIZE_CMD
) Determining size of
\"$<\"
235 $(CROSS
)-size
$(SIZE_MCU_FLAG
) $(SIZE_FORMAT_FLAG
) $<
237 # Prints size information on the symbols within a compiled application in decimal bytes
238 symbol-sizes
: $(TARGET
).elf
239 @echo
$(MSG_NM_CMD
) Extracting
\"$<\" symbols with decimal byte sizes
240 $(CROSS
)-nm
--size-sort
--demangle
--radix
=d
$<
242 # Cleans intermediary build files, leaving only the compiled application files
244 @echo
$(MSG_REMOVE_CMD
) Removing object files of
\"$(TARGET
)\"
245 rm -f
$(OBJECT_FILES
)
246 @echo
$(MSG_REMOVE_CMD
) Removing dependency files of
\"$(TARGET
)\"
247 rm -f
$(DEPENDENCY_FILES
)
249 # Cleans all build files, leaving only the original source code
251 @echo
$(MSG_REMOVE_CMD
) Removing output files of
\"$(TARGET
)\"
252 rm -f
$(TARGET
).elf
$(TARGET
).hex
$(TARGET
).bin
$(TARGET
).eep
$(TARGET
).map
$(TARGET
).lss
$(TARGET
).sym
$(TARGET
).a
254 # Performs a complete build of the user application and prints size information afterwards
255 all: build_begin elf hex bin lss sym size build_end
257 # Helper targets, to build a specific type of output file without having to know the project target name
260 hex
: $(TARGET
).hex
$(TARGET
).eep
261 bin
: $(TARGET
).bin
$(TARGET
).eep
265 # Default target to *create* the user application's specified source files; if this rule is executed by
266 # make, the input source file doesn't exist and an error needs to be presented to the user
268 $(error Source file does not exist
: $@
)
270 # Compiles an input C source file and generates an assembly listing for it
271 %.s
: %.c
$(MAKEFILE_LIST
)
272 @echo
$(MSG_COMPILE_CMD
) Generating assembly from C file
\"$(notdir $<)\"
273 $(CROSS
)-gcc
-S
$(BASE_CC_FLAGS
) $(BASE_C_FLAGS
) $(CC_FLAGS
) $(C_FLAGS
) $< -o
$@
275 # Compiles an input C++ source file and generates an assembly listing for it
276 %.s
: %.
cpp $(MAKEFILE_LIST
)
277 @echo
$(MSG_COMPILE_CMD
) Generating assembly from C
++ file
\"$(notdir $<)\"
278 $(CROSS
)-gcc
-S
$(BASE_CC_FLAGS
) $(BASE_CPP_FLAGS
) $(CC_FLAGS
) $(CPP_FLAGS
) $< -o
$@
280 # Compiles an input C source file and generates a linkable object file for it
281 $(OBJDIR
)/%.o
: %.c
$(MAKEFILE_LIST
)
282 @echo
$(MSG_COMPILE_CMD
) Compiling C file
\"$(notdir $<)\"
283 $(CROSS
)-gcc
-c
$(BASE_CC_FLAGS
) $(BASE_C_FLAGS
) $(CC_FLAGS
) $(C_FLAGS
) -MMD
-MP
-MF
$(@
:%.o
=%.d
) $< -o
$@
285 # Compiles an input C++ source file and generates a linkable object file for it
286 $(OBJDIR
)/%.o
: %.
cpp $(MAKEFILE_LIST
)
287 @echo
$(MSG_COMPILE_CMD
) Compiling C
++ file
\"$(notdir $<)\"
288 $(CROSS
)-gcc
-c
$(BASE_CC_FLAGS
) $(BASE_CPP_FLAGS
) $(CC_FLAGS
) $(CPP_FLAGS
) -MMD
-MP
-MF
$(@
:%.o
=%.d
) $< -o
$@
290 # Assembles an input ASM source file and generates a linkable object file for it
291 $(OBJDIR
)/%.o
: %.S
$(MAKEFILE_LIST
)
292 @echo
$(MSG_ASSEMBLE_CMD
) Assembling
\"$(notdir $<)\"
293 $(CROSS
)-gcc
-c
$(BASE_CC_FLAGS
) $(BASE_ASM_FLAGS
) $(CC_FLAGS
) $(ASM_FLAGS
) -MMD
-MP
-MF
$(@
:%.o
=%.d
) $< -o
$@
295 # Generates a library archive file from the user application, which can be linked into other applications
296 .PRECIOUS
: $(OBJECT_FILES
)
299 @echo
$(MSG_ARCHIVE_CMD
) Archiving object files into
\"$@
\"
300 $(CROSS
)-ar rcs
$@
$(OBJECT_FILES
)
302 # Generates an ELF debug file from the user application, which can be further processed for FLASH and EEPROM data
303 # files, or used for programming and debugging directly
304 .PRECIOUS
: $(OBJECT_FILES
)
306 %.elf
: $(OBJECT_FILES
)
307 @echo
$(MSG_LINK_CMD
) Linking object files into
\"$@
\"
308 $(CROSS
)-gcc
$^
-o
$@
$(BASE_LD_FLAGS
) $(LD_FLAGS
)
310 # Extracts out the loadable FLASH memory data from the project ELF file, and creates an Intel HEX format file of it
312 @echo
$(MSG_OBJCPY_CMD
) Extracting HEX file data from
\"$<\"
313 $(CROSS
)-objcopy
-O ihex
-R .eeprom
-R .fuse
-R .lock
-R .signature
$< $@
315 # Extracts out the loadable FLASH memory data from the project ELF file, and creates an Binary format file of it
317 @echo
$(MSG_OBJCPY_CMD
) Extracting BIN file data from
\"$<\"
318 $(CROSS
)-objcopy
-O binary
-R .eeprom
-R .fuse
-R .lock
-R .signature
$< $@
320 # Extracts out the loadable EEPROM memory data from the project ELF file, and creates an Intel HEX format file of it
322 @echo
$(MSG_OBJCPY_CMD
) Extracting EEP file data from
\"$<\"
323 $(CROSS
)-objcopy
-j .eeprom
--set-section-flags
=.eeprom
="alloc,load" --change-section-lma .eeprom
=0 --no-change-warnings
-O ihex
$< $@ || exit
0
325 # Creates an assembly listing file from an input project ELF file, containing interleaved assembly and source data
327 @echo
$(MSG_OBJDMP_CMD
) Extracting LSS file data from
\"$<\"
328 $(CROSS
)-objdump
-h
-d
-S
-z
$< > $@
330 # Creates a symbol file listing the loadable and discarded symbols from an input project ELF file
332 @echo
$(MSG_NM_CMD
) Extracting SYM file data from
\"$<\"
333 $(CROSS
)-nm
-n
$< > $@
335 # Include build dependency files
336 -include $(DEPENDENCY_FILES
)
338 # Phony build targets for this module
339 .PHONY
: build_begin build_end size symbol-sizes lib elf hex lss
clean mostlyclean