]> git.donarmstrong.com Git - qmk_firmware.git/blob - tmk_core/rules.mk
Enable warnings as errors
[qmk_firmware.git] / tmk_core / rules.mk
1 # Hey Emacs, this is a -*- makefile -*-
2 #----------------------------------------------------------------------------
3 # WinAVR Makefile Template written by Eric B. Weddington, Jg Wunsch, et al.
4 #
5 # Released to the Public Domain
6 #
7 # Additional material for this makefile was written by:
8 # Peter Fleury
9 # Tim Henigan
10 # Colin O'Flynn
11 # Reiner Patommel
12 # Markus Pfaff
13 # Sander Pool
14 # Frederik Rouleau
15 # Carlos Lamas
16 #
17
18 # Enable vpath seraching for source files only
19 # Without this, output files, could be read from the wrong .build directories
20 VPATH_SRC := $(VPATH)
21 vpath %.c $(VPATH_SRC)
22 vpath %.h $(VPATH_SRC)
23 vpath %.cpp $(VPATH_SRC)
24 vpath %.cc $(VPATH_SRC)
25 vpath %.hpp $(VPATH_SRC)
26 vpath %.S $(VPATH_SRC)
27 VPATH :=
28
29 # Convert all SRC to OBJ
30 define OBJ_FROM_SRC
31 $(patsubst %.c,$1/%.o,$(patsubst %.cpp,$1/%.o,$(patsubst %.cc,$1/%.o,$(patsubst %.S,$1/%.o,$($1_SRC)))))
32 endef
33 $(foreach OUTPUT,$(OUTPUTS),$(eval $(OUTPUT)_OBJ +=$(call OBJ_FROM_SRC,$(OUTPUT))))
34
35 # Define a list of all objects
36 OBJ := $(foreach OUTPUT,$(OUTPUTS),$($(OUTPUT)_OBJ))
37
38 MASTER_OUTPUT := $(firstword $(OUTPUTS))
39
40
41
42 # Output format. (can be srec, ihex, binary)
43 FORMAT = ihex
44
45 # Optimization level, can be [0, 1, 2, 3, s].
46 #     0 = turn off optimization. s = optimize for size.
47 #     (Note: 3 is not always the best optimization level. See avr-libc FAQ.)
48 OPT = s
49
50 AUTOGEN ?= false
51
52
53 # Compiler flag to set the C Standard level.
54 #     c89   = "ANSI" C
55 #     gnu89 = c89 plus GCC extensions
56 #     c99   = ISO C99 standard (not yet fully implemented)
57 #     gnu99 = c99 plus GCC extensions
58 CSTANDARD = -std=gnu99
59
60
61 # Place -D or -U options here for C sources
62 #CDEFS +=
63
64
65 # Place -D or -U options here for ASM sources
66 #ADEFS +=
67
68
69 # Place -D or -U options here for C++ sources
70 #CPPDEFS += -D__STDC_LIMIT_MACROS
71 #CPPDEFS += -D__STDC_CONSTANT_MACROS
72 #CPPDEFS +=
73
74
75
76
77 #---------------- Compiler Options C ----------------
78 #  -g*:          generate debugging information
79 #  -O*:          optimization level
80 #  -f...:        tuning, see GCC manual and avr-libc documentation
81 #  -Wall...:     warning level
82 #  -Wa,...:      tell GCC to pass this to the assembler.
83 #    -adhlns...: create assembler listing
84 CFLAGS += -g$(DEBUG)
85 CFLAGS += $(CDEFS)
86 CFLAGS += -O$(OPT)
87 # add color
88 ifeq ($(COLOR),true)
89 ifeq ("$(shell echo "int main(){}" | $(CC) -fdiagnostics-color -x c - -o /dev/null 2>&1)", "")
90         CFLAGS+= -fdiagnostics-color
91 endif
92 endif
93 CFLAGS += -Wall
94 CFLAGS += -Wstrict-prototypes
95 CFLAGS += -Werror
96 #CFLAGS += -mshort-calls
97 #CFLAGS += -fno-unit-at-a-time
98 #CFLAGS += -Wundef
99 #CFLAGS += -Wunreachable-code
100 #CFLAGS += -Wsign-compare
101 CFLAGS += -Wa,-adhlns=$(@:%.o=%.lst)
102 CFLAGS += $(CSTANDARD)
103
104
105 #---------------- Compiler Options C++ ----------------
106 #  -g*:          generate debugging information
107 #  -O*:          optimization level
108 #  -f...:        tuning, see GCC manual and avr-libc documentation
109 #  -Wall...:     warning level
110 #  -Wa,...:      tell GCC to pass this to the assembler.
111 #    -adhlns...: create assembler listing
112 CPPFLAGS += -g$(DEBUG)
113 CPPFLAGS += $(CPPDEFS)
114 CPPFLAGS += -O$(OPT)
115 # to supress "warning: only initialized variables can be placed into program memory area"
116 CPPFLAGS += -w
117 CPPFLAGS += -Wall
118 CPPFLAGS += -Wundef
119 CPPFLAGS += -Werror
120 #CPPFLAGS += -mshort-calls
121 #CPPFLAGS += -fno-unit-at-a-time
122 #CPPFLAGS += -Wstrict-prototypes
123 #CPPFLAGS += -Wunreachable-code
124 #CPPFLAGS += -Wsign-compare
125 CPPFLAGS += -Wa,-adhlns=$(@:%.o=%.lst)
126 #CPPFLAGS += $(CSTANDARD)
127
128 #---------------- Assembler Options ----------------
129 #  -Wa,...:   tell GCC to pass this to the assembler.
130 #  -adhlns:   create listing
131 #  -gstabs:   have the assembler create line number information; note that
132 #             for use in COFF files, additional information about filenames
133 #             and function names needs to be present in the assembler source
134 #             files -- see avr-libc docs [FIXME: not yet described there]
135 #  -listing-cont-lines: Sets the maximum number of continuation lines of hex
136 #       dump that will be displayed for a given single line of source input.
137 ASFLAGS += $(ADEFS) 
138 ASFLAGS += -Wa,-adhlns=$(@:%.o=%.lst),-gstabs,--listing-cont-lines=100
139
140 #---------------- Library Options ----------------
141 # Minimalistic printf version
142 PRINTF_LIB_MIN = -Wl,-u,vfprintf -lprintf_min
143
144 # Floating point printf version (requires MATH_LIB = -lm below)
145 PRINTF_LIB_FLOAT = -Wl,-u,vfprintf -lprintf_flt
146
147 # If this is left blank, then it will use the Standard printf version.
148 PRINTF_LIB =
149 #PRINTF_LIB = $(PRINTF_LIB_MIN)
150 #PRINTF_LIB = $(PRINTF_LIB_FLOAT)
151
152
153 # Minimalistic scanf version
154 SCANF_LIB_MIN = -Wl,-u,vfscanf -lscanf_min
155
156 # Floating point + %[ scanf version (requires MATH_LIB = -lm below)
157 SCANF_LIB_FLOAT = -Wl,-u,vfscanf -lscanf_flt
158
159 # If this is left blank, then it will use the Standard scanf version.
160 SCANF_LIB =
161 #SCANF_LIB = $(SCANF_LIB_MIN)
162 #SCANF_LIB = $(SCANF_LIB_FLOAT)
163
164
165 MATH_LIB = -lm
166 CREATE_MAP ?= yes
167
168
169 #---------------- Linker Options ----------------
170 #  -Wl,...:     tell GCC to pass this to linker.
171 #    -Map:      create map file
172 #    --cref:    add cross reference to  map file
173 #
174 # Comennt out "--relax" option to avoid a error such:
175 #       (.vectors+0x30): relocation truncated to fit: R_AVR_13_PCREL against symbol `__vector_12'
176 #
177
178 ifeq ($(CREATE_MAP),yes)
179         LDFLAGS += -Wl,-Map=$(BUILD_DIR)/$(TARGET).map,--cref
180 endif
181 #LDFLAGS += -Wl,--relax
182 LDFLAGS += $(EXTMEMOPTS)
183 LDFLAGS += $(patsubst %,-L%,$(EXTRALIBDIRS))
184 LDFLAGS += $(PRINTF_LIB) $(SCANF_LIB) $(MATH_LIB)
185 #LDFLAGS += -T linker_script.x
186 # You can give EXTRALDFLAGS at 'make' command line.
187 LDFLAGS += $(EXTRALDFLAGS)
188
189 # Define programs and commands.
190 SHELL = sh
191 REMOVE = rm -f
192 REMOVEDIR = rmdir
193 COPY = cp
194 WINSHELL = cmd
195 SECHO = $(SILENT) || echo
196
197
198 # Compiler flags to generate dependency files.
199 #GENDEPFLAGS = -MMD -MP -MF .dep/$(@F).d
200 GENDEPFLAGS = -MMD -MP -MF $(patsubst %.o,%.td,$@)
201
202
203 # Combine all necessary flags and optional flags.
204 # Add target processor to flags.
205 # You can give extra flags at 'make' command line like: make EXTRAFLAGS=-DFOO=bar
206 ALL_CFLAGS = $(MCUFLAGS) $(CFLAGS) $(EXTRAFLAGS)
207 ALL_CPPFLAGS = $(MCUFLAGS) -x c++ $(CPPFLAGS) $(EXTRAFLAGS)
208 ALL_ASFLAGS = $(MCUFLAGS) -x assembler-with-cpp $(ASFLAGS) $(EXTRAFLAGS)
209
210 MOVE_DEP = mv -f $(patsubst %.o,%.td,$@) $(patsubst %.o,%.d,$@)
211
212
213 elf: $(BUILD_DIR)/$(TARGET).elf
214 hex: $(BUILD_DIR)/$(TARGET).hex
215 eep: $(BUILD_DIR)/$(TARGET).eep
216 lss: $(BUILD_DIR)/$(TARGET).lss
217 sym: $(BUILD_DIR)/$(TARGET).sym
218 LIBNAME=lib$(TARGET).a
219 lib: $(LIBNAME)
220
221 # Display size of file.
222 HEXSIZE = $(SIZE) --target=$(FORMAT) $(TARGET).hex
223 #ELFSIZE = $(SIZE) --mcu=$(MCU) --format=avr $(TARGET).elf
224 ELFSIZE = $(SIZE) $(BUILD_DIR)/$(TARGET).elf
225
226 sizebefore:
227         @if test -f $(TARGET).hex; then $(SECHO) $(MSG_SIZE_BEFORE); $(SILENT) || $(HEXSIZE); \
228         2>/dev/null; $(SECHO); fi
229
230 sizeafter: $(BUILD_DIR)/$(TARGET).hex
231         @if test -f $(TARGET).hex; then $(SECHO); $(SECHO) $(MSG_SIZE_AFTER); $(SILENT) || $(HEXSIZE); \
232         2>/dev/null; $(SECHO); fi
233         # test file sizes eventually
234         # @if [[ $($(SIZE) --target=$(FORMAT) $(TARGET).hex | $(AWK) 'NR==2 {print "0x"$5}') -gt 0x200 ]]; then $(SECHO) "File is too big!"; fi
235
236 # Display compiler version information.
237 gccversion :
238         @$(SILENT) || $(CC) --version
239
240 # Create final output files (.hex, .eep) from ELF output file.
241 %.hex: %.elf
242         @$(SILENT) || printf "$(MSG_FLASH) $@" | $(AWK_CMD)
243         $(eval CMD=$(HEX) $< $@)
244         @$(BUILD_CMD)
245         @if $(AUTOGEN); then \
246                 $(SILENT) || printf "Copying $(TARGET).hex to keymaps/$(KEYMAP)/$(KEYBOARD)_$(KEYMAP).hex\n"; \
247                 $(COPY) $@ $(KEYMAP_PATH)/$(KEYBOARD)_$(KEYMAP).hex; \
248         else \
249                 $(COPY) $@ $(TARGET).hex; \
250         fi
251
252 %.eep: %.elf
253         @$(SILENT) || printf "$(MSG_EEPROM) $@" | $(AWK_CMD)
254         $(eval CMD=$(EEP) $< $@ || exit 0)
255         @$(BUILD_CMD)
256
257 # Create extended listing file from ELF output file.
258 %.lss: %.elf
259         @$(SILENT) || printf "$(MSG_EXTENDED_LISTING) $@" | $(AWK_CMD)
260         $(eval CMD=$(OBJDUMP) -h -S -z $< > $@)
261         @$(BUILD_CMD)
262
263 # Create a symbol table from ELF output file.
264 %.sym: %.elf
265         @$(SILENT) || printf "$(MSG_SYMBOL_TABLE) $@" | $(AWK_CMD)
266         $(eval CMD=$(NM) -n $< > $@ )
267         @$(BUILD_CMD)
268
269 %.bin: %.elf
270         @$(SILENT) || printf "$(MSG_BIN) $@" | $(AWK_CMD)
271         $(eval CMD=$(BIN) $< $@ || exit 0)
272         @$(BUILD_CMD)
273
274 BEGIN = gccversion sizebefore
275
276 # Link: create ELF output file from object files.
277 .SECONDARY : $(BUILD_DIR)/$(TARGET).elf
278 .PRECIOUS : $(OBJ)
279 # Note the obj.txt depeendency is there to force linking if a source file is deleted
280 %.elf: $(OBJ) $(MASTER_OUTPUT)/cflags.txt $(MASTER_OUTPUT)/ldflags.txt $(MASTER_OUTPUT)/obj.txt | $(BEGIN)
281         @$(SILENT) || printf "$(MSG_LINKING) $@" | $(AWK_CMD)
282         $(eval CMD=$(CC) $(ALL_CFLAGS) $(filter-out %.txt,$^) --output $@ $(LDFLAGS))
283         @$(BUILD_CMD)
284         
285
286 define GEN_OBJRULE
287 $1_INCFLAGS := $$(patsubst %,-I%,$$($1_INC))
288 ifdef $1_CONFIG
289 $1_CONFIG_FLAGS += -include $$($1_CONFIG)
290 endif
291 $1_CFLAGS = $$(ALL_CFLAGS) $$($1_DEFS) $$($1_INCFLAGS) $$($1_CONFIG_FLAGS)
292 $1_CPPFLAGS= $$(ALL_CPPFLAGS) $$($1_DEFS) $$($1_INCFLAGS) $$($1_CONFIG_FLAGS)
293 $1_ASFLAGS= $$(ALL_ASFLAGS) $$($1_DEFS) $$($1_INCFLAGS) $$($1_CONFIG_FLAGS)
294
295 # Compile: create object files from C source files.
296 $1/%.o : %.c $1/%.d $1/cflags.txt $1/compiler.txt | $(BEGIN)
297         @mkdir -p $$(@D)
298         @$$(SILENT) || printf "$$(MSG_COMPILING) $$<" | $$(AWK_CMD)
299         $$(eval CMD := $$(CC) -c $$($1_CFLAGS) $$(GENDEPFLAGS) $$< -o $$@ && $$(MOVE_DEP))
300         @$$(BUILD_CMD)
301
302 # Compile: create object files from C++ source files.
303 $1/%.o : %.cpp $1/%.d $1/cppflags.txt $1/compiler.txt | $(BEGIN)
304         @mkdir -p $$(@D)
305         @$$(SILENT) || printf "$$(MSG_COMPILING_CPP) $$<" | $$(AWK_CMD)
306         $$(eval CMD=$$(CC) -c $$($1_CPPFLAGS) $$(GENDEPFLAGS) $$< -o $$@ && $$(MOVE_DEP))
307         @$$(BUILD_CMD)
308
309 $1/%.o : %.cc $1/%.d $1/cppflags.txt $1/compiler.txt | $(BEGIN)
310         @mkdir -p $$(@D)
311         @$$(SILENT) || printf "$$(MSG_COMPILING_CPP) $$<" | $$(AWK_CMD)
312         $$(eval CMD=$$(CC) -c $$($1_CPPFLAGS) $$(GENDEPFLAGS) $$< -o $$@ && $$(MOVE_DEP))
313         @$$(BUILD_CMD)
314
315 # Assemble: create object files from assembler source files.
316 $1/%.o : %.S $1/asflags.txt $1/compiler.txt | $(BEGIN)
317         @mkdir -p $$(@D)
318         @$(SILENT) || printf "$$(MSG_ASSEMBLING) $$<" | $$(AWK_CMD)
319         $$(eval CMD=$$(CC) -c $$($1_ASFLAGS) $$< -o $$@)
320         @$$(BUILD_CMD)
321
322 $1/force:
323
324 $1/cflags.txt: $1/force
325         echo '$$($1_CFLAGS)' | cmp -s - $$@ || echo '$$($1_CFLAGS)' > $$@
326
327 $1/cppflags.txt: $1/force
328         echo '$$($1_CPPFLAGS)' | cmp -s - $$@ || echo '$$($1_CPPFLAGS)' > $$@
329
330 $1/asflags.txt: $1/force
331         echo '$$($1_ASFLAGS)' | cmp -s - $$@ || echo '$$($1_ASFLAGS)' > $$@
332
333 $1/compiler.txt: $1/force
334         $$(CC) --version | cmp -s - $$@ || $$(CC) --version > $$@
335 endef
336
337 .PRECIOUS: $(MASTER_OUTPUT)/obj.txt
338 $(MASTER_OUTPUT)/obj.txt: $(MASTER_OUTPUT)/force
339         echo '$(OBJ)' | cmp -s - $@ || echo '$(OBJ)' > $@
340
341 .PRECIOUS: $(MASTER_OUTPUT)/ldflags.txt
342 $(MASTER_OUTPUT)/ldflags.txt: $(MASTER_OUTPUT)/force
343         echo '$(LDFLAGS)' | cmp -s - $@ || echo '$(LDFLAGS)' > $@
344
345
346 # We have to use static rules for the .d files for some reason
347 DEPS = $(patsubst %.o,%.d,$(OBJ))
348 # Keep the .d files
349 .PRECIOUS: $(DEPS)
350 # Empty rule to force recompilation if the .d file is missing
351 $(DEPS):
352         
353
354 $(foreach OUTPUT,$(OUTPUTS),$(eval $(call GEN_OBJRULE,$(OUTPUT))))
355
356 # Create preprocessed source for use in sending a bug report.
357 %.i : %.c | $(BEGIN)
358         $(CC) -E -mmcu=$(MCU) $(CFLAGS) $< -o $@
359
360 # Target: clean project.
361 clean:
362         $(foreach OUTPUT,$(OUTPUTS), $(REMOVE) -r $(OUTPUT) 2>/dev/null)
363         $(REMOVE) $(BUILD_DIR)/$(TARGET).*
364
365 show_path:
366         @echo VPATH=$(VPATH)
367         @echo SRC=$(SRC)
368         @echo OBJ=$(OBJ)
369
370 # Create build directory
371 $(shell mkdir -p $(BUILD_DIR) 2>/dev/null)
372
373 # Create object files directory
374 $(eval $(foreach OUTPUT,$(OUTPUTS),$(shell mkdir -p $(OUTPUT) 2>/dev/null)))
375
376 # Include the dependency files.
377 -include $(patsubst %.o,%.d,$(OBJ))
378
379
380 # Listing of phony targets.
381 .PHONY : all finish sizebefore sizeafter gccversion \
382 build elf hex eep lss sym coff extcoff \
383 clean clean_list debug gdb-config show_path \
384 program teensy dfu flip dfu-ee flip-ee dfu-start