]> git.donarmstrong.com Git - qmk_firmware.git/blob - tmk_core/rules.mk
Merge pull request #578 from 0xdec/master
[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
19 # Output format. (can be srec, ihex, binary)
20 FORMAT = ihex
21
22 # Optimization level, can be [0, 1, 2, 3, s].
23 #     0 = turn off optimization. s = optimize for size.
24 #     (Note: 3 is not always the best optimization level. See avr-libc FAQ.)
25 OPT = s
26
27 COLOR ?= true
28
29 ifeq ($(COLOR),true)
30         NO_COLOR=\033[0m
31         OK_COLOR=\033[32;01m
32         ERROR_COLOR=\033[31;01m
33         WARN_COLOR=\033[33;01m
34         BLUE=\033[0;34m
35         BOLD=\033[1m
36 endif
37
38 ifdef quick
39         QUICK = $(quick)
40 endif
41
42 QUICK ?= false
43 AUTOGEN ?= false
44
45 ifneq ($(shell awk --version 2>/dev/null),)
46         AWK=awk
47 else
48         AWK=cat && test
49 endif
50
51 OK_STRING=$(OK_COLOR)[OK]$(NO_COLOR)\n
52 ERROR_STRING=$(ERROR_COLOR)[ERRORS]$(NO_COLOR)\n
53 WARN_STRING=$(WARN_COLOR)[WARNINGS]$(NO_COLOR)\n
54
55 ifndef $(SILENT)
56         SILENT = false
57 endif
58
59 TAB_LOG = printf "\n$$LOG\n\n" | $(AWK) '{ sub(/^/," | "); print }'
60 TAB_LOG_PLAIN = printf "$$LOG\n"
61 AWK_STATUS = $(AWK) '{ printf " %-10s\n", $$1; }'
62 AWK_CMD = $(AWK) '{ printf "%-99s", $$0; }'
63 PRINT_ERROR = ($(SILENT) ||printf " $(ERROR_STRING)" | $(AWK_STATUS)) && $(TAB_LOG) && exit 1
64 PRINT_WARNING = ($(SILENT) || printf " $(WARN_STRING)" | $(AWK_STATUS)) && $(TAB_LOG)
65 PRINT_ERROR_PLAIN = ($(SILENT) ||printf " $(ERROR_STRING)" | $(AWK_STATUS)) && $(TAB_LOG_PLAIN) && exit 1
66 PRINT_WARNING_PLAIN = ($(SILENT) || printf " $(WARN_STRING)" | $(AWK_STATUS)) && $(TAB_LOG_PLAIN)
67 PRINT_OK = $(SILENT) || printf " $(OK_STRING)" | $(AWK_STATUS)
68 BUILD_CMD = LOG=$$($(CMD) 2>&1) ; if [ $$? -gt 0 ]; then $(PRINT_ERROR); elif [ "$$LOG" != "" ] ; then $(PRINT_WARNING); else $(PRINT_OK); fi;
69
70 # List any extra directories to look for include files here.
71 #     Each directory must be seperated by a space.
72 #     Use forward slashes for directory separators.
73 #     For a directory that has spaces, enclose it in quotes.
74 EXTRAINCDIRS += $(subst :, ,$(VPATH))
75
76
77 # Compiler flag to set the C Standard level.
78 #     c89   = "ANSI" C
79 #     gnu89 = c89 plus GCC extensions
80 #     c99   = ISO C99 standard (not yet fully implemented)
81 #     gnu99 = c99 plus GCC extensions
82 CSTANDARD = -std=gnu99
83
84
85 # Place -D or -U options here for C sources
86 CDEFS += $(OPT_DEFS)
87
88
89 # Place -D or -U options here for ASM sources
90 ADEFS += $(OPT_DEFS)
91
92
93 # Place -D or -U options here for C++ sources
94 #CPPDEFS += -D__STDC_LIMIT_MACROS
95 #CPPDEFS += -D__STDC_CONSTANT_MACROS
96 CPPDEFS += $(OPT_DEFS)
97
98
99
100 #---------------- Compiler Options C ----------------
101 #  -g*:          generate debugging information
102 #  -O*:          optimization level
103 #  -f...:        tuning, see GCC manual and avr-libc documentation
104 #  -Wall...:     warning level
105 #  -Wa,...:      tell GCC to pass this to the assembler.
106 #    -adhlns...: create assembler listing
107 CFLAGS += -g$(DEBUG)
108 CFLAGS += $(CDEFS)
109 CFLAGS += -O$(OPT)
110 # add color
111 ifeq ($(COLOR),true)
112 ifeq ("$(shell echo "int main(){}" | $(CC) -fdiagnostics-color -x c - -o /dev/null 2>&1)", "")
113         CFLAGS+= -fdiagnostics-color
114 endif
115 endif
116 CFLAGS += -Wall
117 CFLAGS += -Wstrict-prototypes
118 #CFLAGS += -mshort-calls
119 #CFLAGS += -fno-unit-at-a-time
120 #CFLAGS += -Wundef
121 #CFLAGS += -Wunreachable-code
122 #CFLAGS += -Wsign-compare
123 CFLAGS += -Wa,-adhlns=$(@:%.o=%.lst)
124 CFLAGS += $(patsubst %,-I%,$(EXTRAINCDIRS))
125 CFLAGS += $(CSTANDARD)
126 ifdef CONFIG_H
127     CFLAGS += -include $(CONFIG_H)
128 endif
129
130
131 #---------------- Compiler Options C++ ----------------
132 #  -g*:          generate debugging information
133 #  -O*:          optimization level
134 #  -f...:        tuning, see GCC manual and avr-libc documentation
135 #  -Wall...:     warning level
136 #  -Wa,...:      tell GCC to pass this to the assembler.
137 #    -adhlns...: create assembler listing
138 CPPFLAGS += -g$(DEBUG)
139 CPPFLAGS += $(CPPDEFS)
140 CPPFLAGS += -O$(OPT)
141 # to supress "warning: only initialized variables can be placed into program memory area"
142 CPPFLAGS += -w
143 CPPFLAGS += -Wall
144 CPPFLAGS += -Wundef
145 #CPPFLAGS += -mshort-calls
146 #CPPFLAGS += -fno-unit-at-a-time
147 #CPPFLAGS += -Wstrict-prototypes
148 #CPPFLAGS += -Wunreachable-code
149 #CPPFLAGS += -Wsign-compare
150 CPPFLAGS += -Wa,-adhlns=$(@:%.o=%.lst)
151 CPPFLAGS += $(patsubst %,-I%,$(EXTRAINCDIRS))
152 #CPPFLAGS += $(CSTANDARD)
153 ifdef CONFIG_H
154     CPPFLAGS += -include $(CONFIG_H)
155 endif
156
157
158 #---------------- Assembler Options ----------------
159 #  -Wa,...:   tell GCC to pass this to the assembler.
160 #  -adhlns:   create listing
161 #  -gstabs:   have the assembler create line number information; note that
162 #             for use in COFF files, additional information about filenames
163 #             and function names needs to be present in the assembler source
164 #             files -- see avr-libc docs [FIXME: not yet described there]
165 #  -listing-cont-lines: Sets the maximum number of continuation lines of hex
166 #       dump that will be displayed for a given single line of source input.
167 ASFLAGS += $(ADEFS) -Wa,-adhlns=$(@:%.o=%.lst),-gstabs,--listing-cont-lines=100
168 ASFLAGS += $(patsubst %,-I%,$(EXTRAINCDIRS))
169 ifdef CONFIG_H
170     ASFLAGS += -include $(CONFIG_H)
171 endif
172
173 #---------------- Library Options ----------------
174 # Minimalistic printf version
175 PRINTF_LIB_MIN = -Wl,-u,vfprintf -lprintf_min
176
177 # Floating point printf version (requires MATH_LIB = -lm below)
178 PRINTF_LIB_FLOAT = -Wl,-u,vfprintf -lprintf_flt
179
180 # If this is left blank, then it will use the Standard printf version.
181 PRINTF_LIB =
182 #PRINTF_LIB = $(PRINTF_LIB_MIN)
183 #PRINTF_LIB = $(PRINTF_LIB_FLOAT)
184
185
186 # Minimalistic scanf version
187 SCANF_LIB_MIN = -Wl,-u,vfscanf -lscanf_min
188
189 # Floating point + %[ scanf version (requires MATH_LIB = -lm below)
190 SCANF_LIB_FLOAT = -Wl,-u,vfscanf -lscanf_flt
191
192 # If this is left blank, then it will use the Standard scanf version.
193 SCANF_LIB =
194 #SCANF_LIB = $(SCANF_LIB_MIN)
195 #SCANF_LIB = $(SCANF_LIB_FLOAT)
196
197
198 MATH_LIB = -lm
199
200
201 #---------------- Linker Options ----------------
202 #  -Wl,...:     tell GCC to pass this to linker.
203 #    -Map:      create map file
204 #    --cref:    add cross reference to  map file
205 #
206 # Comennt out "--relax" option to avoid a error such:
207 #       (.vectors+0x30): relocation truncated to fit: R_AVR_13_PCREL against symbol `__vector_12'
208 #
209 LDFLAGS += -Wl,-Map=$(BUILD_DIR)/$(TARGET).map,--cref
210 #LDFLAGS += -Wl,--relax
211 LDFLAGS += $(EXTMEMOPTS)
212 LDFLAGS += $(patsubst %,-L%,$(EXTRALIBDIRS))
213 LDFLAGS += $(PRINTF_LIB) $(SCANF_LIB) $(MATH_LIB)
214 #LDFLAGS += -T linker_script.x
215 # You can give EXTRALDFLAGS at 'make' command line.
216 LDFLAGS += $(EXTRALDFLAGS)
217
218 # Define programs and commands.
219 SHELL = sh
220 REMOVE = rm -f
221 REMOVEDIR = rmdir
222 COPY = cp
223 WINSHELL = cmd
224 SECHO = $(SILENT) || echo
225
226 # Define Messages
227 # English
228 MSG_ERRORS_NONE = Errors: none
229 MSG_BEGIN = -------- begin --------
230 MSG_END = --------  end  --------
231 MSG_SIZE_BEFORE = Size before:
232 MSG_SIZE_AFTER = Size after:
233 MSG_COFF = Converting to AVR COFF:
234 MSG_EXTENDED_COFF = Converting to AVR Extended COFF:
235 MSG_FLASH = Creating load file for Flash:
236 MSG_EEPROM = Creating load file for EEPROM:
237 MSG_BIN = Creating binary load file for Flash:
238 MSG_EXTENDED_LISTING = Creating Extended Listing:
239 MSG_SYMBOL_TABLE = Creating Symbol Table:
240 MSG_LINKING = Linking:
241 MSG_COMPILING = Compiling:
242 MSG_COMPILING_CPP = Compiling:
243 MSG_ASSEMBLING = Assembling:
244 MSG_CLEANING = Cleaning project:
245 MSG_CREATING_LIBRARY = Creating library:
246 MSG_SUBMODULE_DIRTY = $(WARN_COLOR)WARNING:$(NO_COLOR)\n \
247         Some git sub-modules are out of date or modified, please consider runnning:$(BOLD)\n\
248         git submodule sync --recursive\n\
249         git submodule update --init --recursive$(NO_COLOR)\n\n\
250         You can ignore this warning if you are not compiling any ChibiOS keyboards,\n\
251         or if you have modified the ChibiOS libraries yourself. \n\n
252
253
254 # Define all object files.
255 OBJ = $(patsubst %.c,$(OBJDIR)/%.o,$(patsubst %.cpp,$(OBJDIR)/%.o,$(patsubst %.S,$(OBJDIR)/%.o,$(SRC))))
256
257 # Define all listing files.
258 LST = $(patsubst %.c,$(OBJDIR)/%.lst,$(patsubst %.cpp,$(OBJDIR)/%.lst,$(patsubst %.S,$(OBJDIR)/%.lst,$(SRC))))
259
260
261 # Compiler flags to generate dependency files.
262 #GENDEPFLAGS = -MMD -MP -MF .dep/$(@F).d
263 GENDEPFLAGS = -MMD -MP -MF $(BUILD_DIR)/.dep/$(subst /,_,$(subst $(BUILD_DIR)/,,$@)).d
264
265
266 # Combine all necessary flags and optional flags.
267 # Add target processor to flags.
268 # You can give extra flags at 'make' command line like: make EXTRAFLAGS=-DFOO=bar
269 ALL_CFLAGS = $(MCUFLAGS) $(CFLAGS) $(GENDEPFLAGS) $(EXTRAFLAGS)
270 ALL_CPPFLAGS = $(MCUFLAGS) -x c++ $(CPPFLAGS) $(GENDEPFLAGS) $(EXTRAFLAGS)
271 ALL_ASFLAGS = $(MCUFLAGS) -x assembler-with-cpp $(ASFLAGS) $(EXTRAFLAGS)
272
273 # Default target.
274 all: build sizeafter
275
276 # Quick make that doesn't clean
277 quick: build sizeafter
278
279 # Change the build target to build a HEX file or a library.
280 build: elf hex
281 #build: elf hex eep lss sym
282 #build: lib
283
284
285 elf: $(BUILD_DIR)/$(TARGET).elf
286 hex: $(BUILD_DIR)/$(TARGET).hex
287 eep: $(BUILD_DIR)/$(TARGET).eep
288 lss: $(BUILD_DIR)/$(TARGET).lss
289 sym: $(BUILD_DIR)/$(TARGET).sym
290 LIBNAME=lib$(TARGET).a
291 lib: $(LIBNAME)
292
293 check_submodule:
294         git submodule status --recursive | \
295         while IFS= read -r x; do \
296                 case "$$x" in \
297                         \ *) ;; \
298                         *) printf "$(MSG_SUBMODULE_DIRTY)";break;; \
299                 esac \
300         done
301
302 # Display size of file.
303 HEXSIZE = $(SIZE) --target=$(FORMAT) $(TARGET).hex
304 #ELFSIZE = $(SIZE) --mcu=$(MCU) --format=avr $(TARGET).elf
305 ELFSIZE = $(SIZE) $(BUILD_DIR)/$(TARGET).elf
306
307 sizebefore:
308         @if test -f $(TARGET).hex; then $(SECHO) $(MSG_SIZE_BEFORE); $(SILENT) || $(HEXSIZE); \
309         2>/dev/null; $(SECHO); fi
310
311 sizeafter: $(BUILD_DIR)/$(TARGET).hex
312         @if test -f $(TARGET).hex; then $(SECHO); $(SECHO) $(MSG_SIZE_AFTER); $(SILENT) || $(HEXSIZE); \
313         2>/dev/null; $(SECHO); fi
314         # test file sizes eventually
315         # @if [[ $($(SIZE) --target=$(FORMAT) $(TARGET).hex | $(AWK) 'NR==2 {print "0x"$5}') -gt 0x200 ]]; then $(SECHO) "File is too big!"; fi
316
317 # Display compiler version information.
318 gccversion :
319         @$(SILENT) || $(CC) --version
320
321 # Create final output files (.hex, .eep) from ELF output file.
322 %.hex: %.elf
323         @$(SILENT) || printf "$(MSG_FLASH) $@" | $(AWK_CMD)
324         $(eval CMD=$(HEX) $< $@)
325         @$(BUILD_CMD)
326         @if $(AUTOGEN); then \
327                 $(SILENT) || printf "Copying $(TARGET).hex to keymaps/$(KEYMAP)/$(KEYBOARD)_$(KEYMAP).hex\n"; \
328                 $(COPY) $@ $(KEYMAP_PATH)/$(KEYBOARD)_$(KEYMAP).hex; \
329         else \
330                 $(COPY) $@ $(TARGET).hex; \
331         fi
332
333 %.eep: %.elf
334         @$(SILENT) || printf "$(MSG_EEPROM) $@" | $(AWK_CMD)
335         $(eval CMD=$(EEP) $< $@ || exit 0)
336         @$(BUILD_CMD)
337
338 # Create extended listing file from ELF output file.
339 %.lss: %.elf
340         @$(SILENT) || printf "$(MSG_EXTENDED_LISTING) $@" | $(AWK_CMD)
341         $(eval CMD=$(OBJDUMP) -h -S -z $< > $@)
342         @$(BUILD_CMD)
343
344 # Create a symbol table from ELF output file.
345 %.sym: %.elf
346         @$(SILENT) || printf "$(MSG_SYMBOL_TABLE) $@" | $(AWK_CMD)
347         $(eval CMD=$(NM) -n $< > $@ )
348         @$(BUILD_CMD)
349
350 %.bin: %.elf
351         @$(SILENT) || printf "$(MSG_BIN) $@" | $(AWK_CMD)
352         $(eval CMD=$(BIN) $< $@ || exit 0)
353         @$(BUILD_CMD)
354
355 # Create library from object files.
356 .SECONDARY : $(BUILD_DIR)/$(TARGET).a
357 .PRECIOUS : $(OBJ)
358 %.a: $(OBJ)
359         @$(SILENT) || printf "$(MSG_CREATING_LIBRARY) $@" | $(AWK_CMD)
360         $(eval CMD=$(AR) $@ $(OBJ) )
361         @$(BUILD_CMD)
362
363 BEGIN = gccversion check_submodule sizebefore
364
365 # Link: create ELF output file from object files.
366 .SECONDARY : $(BUILD_DIR)/$(TARGET).elf
367 .PRECIOUS : $(OBJ)
368 %.elf: $(OBJ) | $(BEGIN)
369         @$(SILENT) || printf "$(MSG_LINKING) $@" | $(AWK_CMD)
370         $(eval CMD=$(CC) $(ALL_CFLAGS) $^ --output $@ $(LDFLAGS))
371         @$(BUILD_CMD)
372
373 # Compile: create object files from C source files.
374 $(OBJDIR)/%.o : %.c | $(BEGIN)
375         @mkdir -p $(@D)
376         @$(SILENT) || printf "$(MSG_COMPILING) $<" | $(AWK_CMD)
377         $(eval CMD=$(CC) -c $(ALL_CFLAGS) $< -o $@)
378         @$(BUILD_CMD)
379
380 # Compile: create object files from C++ source files.
381 $(OBJDIR)/%.o : %.cpp | $(BEGIN)
382         @mkdir -p $(@D)
383         @$(SILENT) || printf "$(MSG_COMPILING_CPP) $<" | $(AWK_CMD)
384         $(eval CMD=$(CC) -c $(ALL_CPPFLAGS) $< -o $@)
385         @$(BUILD_CMD)
386
387 # Compile: create assembler files from C source files.
388 %.s : %.c | $(BEGIN)
389         @$(SILENT) || printf "$(MSG_ASSEMBLING) $<" | $(AWK_CMD)
390         $(eval CMD=$(CC) -S $(ALL_CFLAGS) $< -o $@)
391         @$(BUILD_CMD)
392
393 # Compile: create assembler files from C++ source files.
394 %.s : %.cpp | $(BEGIN)
395         @$(SILENT) || printf "$(MSG_ASSEMBLING) $<" | $(AWK_CMD)
396         $(eval CMD=$(CC) -S $(ALL_CPPFLAGS) $< -o $@)
397         @$(BUILD_CMD)
398
399 # Assemble: create object files from assembler source files.
400 $(OBJDIR)/%.o : %.S | $(BEGIN)
401         @mkdir -p $(@D)
402         @$(SILENT) || printf "$(MSG_ASSEMBLING) $<" | $(AWK_CMD)
403         $(eval CMD=$(CC) -c $(ALL_ASFLAGS) $< -o $@)
404         @$(BUILD_CMD)
405
406 # Create preprocessed source for use in sending a bug report.
407 %.i : %.c | $(BEGIN)
408         $(CC) -E -mmcu=$(MCU) $(CFLAGS) $< -o $@
409
410 # Target: clean project.
411 clean: 
412
413 show_path:
414         @echo VPATH=$(VPATH)
415         @echo SRC=$(SRC)
416
417 SUBDIRS := $(filter-out %/util/ %/doc/ %/keymaps/ %/old_keymap_files/,$(dir $(wildcard $(TOP_DIR)/keyboards/**/*/Makefile)))
418 SUBDIRS := $(SUBDIRS) $(dir $(wildcard $(TOP_DIR)/keyboards/*/.))
419 SUBDIRS := $(sort $(SUBDIRS))
420 # $(error $(SUBDIRS))
421 all-keyboards-defaults-%:
422         @for x in $(SUBDIRS) ; do \
423                 printf "Compiling with default: $$x" | $(AWK_CMD); \
424                 LOG=$$($(MAKE) -C $$x $(subst all-keyboards-defaults-,,$@) VERBOSE=$(VERBOSE) COLOR=$(COLOR) SILENT=true 2>&1) ; if [ $$? -gt 0 ]; then $(PRINT_ERROR_PLAIN); elif [ "$$LOG" != "" ] ; then $(PRINT_WARNING_PLAIN); else $(PRINT_OK); fi; \
425         done
426
427 all-keyboards-defaults: all-keyboards-defaults-all
428
429 KEYBOARDS := $(SUBDIRS:$(TOP_DIR)/keyboards/%/=/keyboards/%)
430 all-keyboards-all: $(addsuffix -all,$(KEYBOARDS))
431 all-keyboards-quick: $(addsuffix -quick,$(KEYBOARDS))
432 all-keyboards-clean: $(addsuffix -clean,$(KEYBOARDS))
433 all-keyboards: all-keyboards-all
434
435 define make_keyboard
436 $(eval KEYBOARD=$(patsubst /keyboards/%,%,$1))
437 $(eval SUBPROJECT=$(lastword $(subst /, ,$(KEYBOARD))))
438 $(eval KEYBOARD=$(firstword $(subst /, ,$(KEYBOARD))))
439 $(eval KEYMAPS=$(notdir $(patsubst %/.,%,$(wildcard $(TOP_DIR)/keyboards/$(KEYBOARD)/keymaps/*/.))))
440 $(eval KEYMAPS+=$(notdir $(patsubst %/.,%,$(wildcard $(TOP_DIR)/keyboards/$(KEYBOARD)/$(SUBPROJECT)/keymaps/*/.))))
441 @for x in $(KEYMAPS) ; do \
442         printf "Compiling $(BOLD)$(KEYBOARD)/$(SUBPROJECT)$(NO_COLOR) with $(BOLD)$$x$(NO_COLOR)" | $(AWK) '{ printf "%-118s", $$0; }'; \
443         LOG=$$($(MAKE) -C $(TOP_DIR)$1 $2 keymap=$$x VERBOSE=$(VERBOSE) COLOR=$(COLOR) SILENT=true 2>&1) ; if [ $$? -gt 0 ]; then $(PRINT_ERROR_PLAIN); elif [ "$$LOG" != "" ] ; then $(PRINT_WARNING_PLAIN); else $(PRINT_OK); fi; \
444 done
445 endef
446
447 define make_keyboard_helper
448 # Just remove the -quick, -all and so on from the first argument and pass it forward
449 $(call make_keyboard,$(subst -$2,,$1),$2)
450 endef
451
452 /keyboards/%-quick:
453         $(call make_keyboard_helper,$@,quick)
454 /keyboards/%-all:
455         $(call make_keyboard_helper,$@,all)
456 /keyboards/%-clean:
457         $(call make_keyboard_helper,$@,clean)
458 /keyboards/%:
459         $(call make_keyboard_helper,$@,all)
460
461 all-keymaps-%:
462         $(eval MAKECONFIG=$(call get_target,all-keymaps,$@))
463         $(eval KEYMAPS=$(notdir $(patsubst %/.,%,$(wildcard $(TOP_DIR)/keyboards/$(KEYBOARD)/keymaps/*/.))))
464         @for x in $(KEYMAPS) ; do \
465                 printf "Compiling $(BOLD)$(KEYBOARD)$(NO_COLOR) with $(BOLD)$$x$(NO_COLOR)" | $(AWK) '{ printf "%-118s", $$0; }'; \
466                 LOG=$$($(MAKE) $(subst all-keymaps-,,$@) keyboard=$(KEYBOARD) keymap=$$x VERBOSE=$(VERBOSE) COLOR=$(COLOR) SILENT=true 2>&1) ; if [ $$? -gt 0 ]; then $(PRINT_ERROR_PLAIN); elif [ "$$LOG" != "" ] ; then $(PRINT_WARNING_PLAIN); else $(PRINT_OK); fi; \
467         done
468
469 all-keymaps: all-keymaps-all
470
471 GOAL=$(MAKECMDGOALS)
472 ifeq ($(MAKECMDGOALS),)
473 GOAL = all
474 endif
475 CLEANING_GOALS=clean clean_list all
476 ifneq ($(findstring $(GOAL),$(CLEANING_GOALS)),)
477 $(shell $(REMOVE) -r $(BUILD_DIR) 2>/dev/null)
478 $(shell $(REMOVE) -r $(TOP_DIR)/$(BUILD_DIR))
479 $(shell $(REMOVE) -r $(KEYBOARD_PATH)/$(BUILD_DIR))
480 $(shell if $$SUBPROJECT; then $(REMOVE) -r $(SUBPROJECT_PATH)/$(BUILD_DIR); fi)
481 $(shell $(REMOVE) -r $(KEYMAP_PATH)/$(BUILD_DIR))
482 endif
483
484 # Create build directory
485 $(shell mkdir $(BUILD_DIR) 2>/dev/null)
486
487 # Create object files directory
488 $(shell mkdir $(OBJDIR) 2>/dev/null)
489
490
491 # Include the dependency files.
492 -include $(shell mkdir $(BUILD_DIR)/.dep 2>/dev/null) $(wildcard $(BUILD_DIR)/.dep/*)
493
494
495 # Listing of phony targets.
496 .PHONY : all quick finish sizebefore sizeafter gccversion \
497 build elf hex eep lss sym coff extcoff check_submodule \
498 clean clean_list debug gdb-config show_path \
499 program teensy dfu flip dfu-ee flip-ee dfu-start \
500 all-keyboards-defaults all-keyboards all-keymaps \
501 all-keyboards-defaults-% all-keyboards-% all-keymaps-%