]> git.gir.st - tmk_keyboard.git/blob - Makefile.rules
Synchronous USART support for PS/2 on V-USB stack
[tmk_keyboard.git] / Makefile.rules
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 # On command line:
19 #
20 # make all = Make software.
21 #
22 # make clean = Clean out built project files.
23 #
24 # make coff = Convert ELF to AVR COFF.
25 #
26 # make extcoff = Convert ELF to AVR Extended COFF.
27 #
28 # make program = Download the hex file to the device, using avrdude.
29 # Please customize the avrdude settings below first!
30 #
31 # make debug = Start either simulavr or avarice as specified for debugging,
32 # with avr-gdb or avr-insight as the front end for debugging.
33 #
34 # make filename.s = Just compile filename.c into the assembler code only.
35 #
36 # make filename.i = Create a preprocessed source file for use in submitting
37 # bug reports to the GCC project.
38 #
39 # To rebuild project do "make clean" then "make all".
40 #----------------------------------------------------------------------------
41
42
43 # Output format. (can be srec, ihex, binary)
44 FORMAT = ihex
45
46
47 # Object files directory
48 # To put object files in current directory, use a dot (.), do NOT make
49 # this an empty or blank macro!
50 OBJDIR = obj
51
52
53 # Optimization level, can be [0, 1, 2, 3, s].
54 # 0 = turn off optimization. s = optimize for size.
55 # (Note: 3 is not always the best optimization level. See avr-libc FAQ.)
56 OPT = s
57
58
59 # Debugging format.
60 # Native formats for AVR-GCC's -g are dwarf-2 [default] or stabs.
61 # AVR Studio 4.10 requires dwarf-2.
62 # AVR [Extended] COFF format requires stabs, plus an avr-objcopy run.
63 DEBUG = dwarf-2
64
65
66 # List any extra directories to look for include files here.
67 # Each directory must be seperated by a space.
68 # Use forward slashes for directory separators.
69 # For a directory that has spaces, enclose it in quotes.
70 EXTRAINCDIRS = $(subst :, ,$(VPATH))
71
72
73 # Compiler flag to set the C Standard level.
74 # c89 = "ANSI" C
75 # gnu89 = c89 plus GCC extensions
76 # c99 = ISO C99 standard (not yet fully implemented)
77 # gnu99 = c99 plus GCC extensions
78 CSTANDARD = -std=gnu99
79
80
81 # Place -D or -U options here for C sources
82 CDEFS = -DF_CPU=$(F_CPU)UL
83 CDEFS += $(OPT_DEFS)
84
85
86 # Place -D or -U options here for ASM sources
87 ADEFS = -DF_CPU=$(F_CPU)
88 ADEFS += $(OPT_DEFS)
89
90
91 # Place -D or -U options here for C++ sources
92 CPPDEFS = -DF_CPU=$(F_CPU)UL
93 #CPPDEFS += -D__STDC_LIMIT_MACROS
94 #CPPDEFS += -D__STDC_CONSTANT_MACROS
95 CPPDEFS += $(OPT_DEFS)
96
97
98
99 #---------------- Compiler Options C ----------------
100 # -g*: generate debugging information
101 # -O*: optimization level
102 # -f...: tuning, see GCC manual and avr-libc documentation
103 # -Wall...: warning level
104 # -Wa,...: tell GCC to pass this to the assembler.
105 # -adhlns...: create assembler listing
106 CFLAGS = -g$(DEBUG)
107 CFLAGS += $(CDEFS)
108 CFLAGS += -O$(OPT)
109 CFLAGS += -funsigned-char
110 CFLAGS += -funsigned-bitfields
111 CFLAGS += -ffunction-sections
112 CFLAGS += -fpack-struct
113 CFLAGS += -fshort-enums
114 CFLAGS += -Wall
115 CFLAGS += -Wstrict-prototypes
116 #CFLAGS += -mshort-calls
117 #CFLAGS += -fno-unit-at-a-time
118 #CFLAGS += -Wundef
119 #CFLAGS += -Wunreachable-code
120 #CFLAGS += -Wsign-compare
121 CFLAGS += -Wa,-adhlns=$(@:%.o=%.lst)
122 CFLAGS += $(patsubst %,-I%,$(EXTRAINCDIRS))
123 CFLAGS += $(CSTANDARD)
124 CFLAGS += -include config.h
125
126
127 #---------------- Compiler Options C++ ----------------
128 # -g*: generate debugging information
129 # -O*: optimization level
130 # -f...: tuning, see GCC manual and avr-libc documentation
131 # -Wall...: warning level
132 # -Wa,...: tell GCC to pass this to the assembler.
133 # -adhlns...: create assembler listing
134 CPPFLAGS = -g$(DEBUG)
135 CPPFLAGS += $(CPPDEFS)
136 CPPFLAGS += -O$(OPT)
137 CPPFLAGS += -funsigned-char
138 CPPFLAGS += -funsigned-bitfields
139 CPPFLAGS += -fpack-struct
140 CPPFLAGS += -fshort-enums
141 CPPFLAGS += -fno-exceptions
142 CPPFLAGS += -Wall
143 CPPFLAGS += -Wundef
144 #CPPFLAGS += -mshort-calls
145 #CPPFLAGS += -fno-unit-at-a-time
146 #CPPFLAGS += -Wstrict-prototypes
147 #CPPFLAGS += -Wunreachable-code
148 #CPPFLAGS += -Wsign-compare
149 CPPFLAGS += -Wa,-adhlns=$(@:%.o=%.lst)
150 CPPFLAGS += $(patsubst %,-I%,$(EXTRAINCDIRS))
151 #CPPFLAGS += $(CSTANDARD)
152 CPPFLAGS += -include config.h
153
154
155 #---------------- Assembler Options ----------------
156 # -Wa,...: tell GCC to pass this to the assembler.
157 # -adhlns: create listing
158 # -gstabs: have the assembler create line number information; note that
159 # for use in COFF files, additional information about filenames
160 # and function names needs to be present in the assembler source
161 # files -- see avr-libc docs [FIXME: not yet described there]
162 # -listing-cont-lines: Sets the maximum number of continuation lines of hex
163 # dump that will be displayed for a given single line of source input.
164 ASFLAGS = $(ADEFS) -Wa,-adhlns=$(@:%.o=%.lst),-gstabs,--listing-cont-lines=100
165 ASFLAGS += -include config.h
166
167
168 #---------------- Library Options ----------------
169 # Minimalistic printf version
170 PRINTF_LIB_MIN = -Wl,-u,vfprintf -lprintf_min
171
172 # Floating point printf version (requires MATH_LIB = -lm below)
173 PRINTF_LIB_FLOAT = -Wl,-u,vfprintf -lprintf_flt
174
175 # If this is left blank, then it will use the Standard printf version.
176 PRINTF_LIB =
177 #PRINTF_LIB = $(PRINTF_LIB_MIN)
178 #PRINTF_LIB = $(PRINTF_LIB_FLOAT)
179
180
181 # Minimalistic scanf version
182 SCANF_LIB_MIN = -Wl,-u,vfscanf -lscanf_min
183
184 # Floating point + %[ scanf version (requires MATH_LIB = -lm below)
185 SCANF_LIB_FLOAT = -Wl,-u,vfscanf -lscanf_flt
186
187 # If this is left blank, then it will use the Standard scanf version.
188 SCANF_LIB =
189 #SCANF_LIB = $(SCANF_LIB_MIN)
190 #SCANF_LIB = $(SCANF_LIB_FLOAT)
191
192
193 MATH_LIB = -lm
194
195
196 # List any extra directories to look for libraries here.
197 # Each directory must be seperated by a space.
198 # Use forward slashes for directory separators.
199 # For a directory that has spaces, enclose it in quotes.
200 EXTRALIBDIRS =
201
202
203
204 #---------------- External Memory Options ----------------
205
206 # 64 KB of external RAM, starting after internal RAM (ATmega128!),
207 # used for variables (.data/.bss) and heap (malloc()).
208 #EXTMEMOPTS = -Wl,-Tdata=0x801100,--defsym=__heap_end=0x80ffff
209
210 # 64 KB of external RAM, starting after internal RAM (ATmega128!),
211 # only used for heap (malloc()).
212 #EXTMEMOPTS = -Wl,--section-start,.data=0x801100,--defsym=__heap_end=0x80ffff
213
214 EXTMEMOPTS =
215
216
217
218 #---------------- Linker Options ----------------
219 # -Wl,...: tell GCC to pass this to linker.
220 # -Map: create map file
221 # --cref: add cross reference to map file
222 #
223 # Comennt out "--relax" option to avoid a error such:
224 # (.vectors+0x30): relocation truncated to fit: R_AVR_13_PCREL against symbol `__vector_12'
225 #
226 LDFLAGS = -Wl,-Map=$(TARGET).map,--cref
227 LDFLAGS += -Wl,--relax
228 LDFLAGS += -Wl,--gc-sections
229 LDFLAGS += $(EXTMEMOPTS)
230 LDFLAGS += $(patsubst %,-L%,$(EXTRALIBDIRS))
231 LDFLAGS += $(PRINTF_LIB) $(SCANF_LIB) $(MATH_LIB)
232 #LDFLAGS += -T linker_script.x
233
234
235
236 #---------------- Debugging Options ----------------
237
238 # For simulavr only - target MCU frequency.
239 DEBUG_MFREQ = $(F_CPU)
240
241 # Set the DEBUG_UI to either gdb or insight.
242 # DEBUG_UI = gdb
243 DEBUG_UI = insight
244
245 # Set the debugging back-end to either avarice, simulavr.
246 DEBUG_BACKEND = avarice
247 #DEBUG_BACKEND = simulavr
248
249 # GDB Init Filename.
250 GDBINIT_FILE = __avr_gdbinit
251
252 # When using avarice settings for the JTAG
253 JTAG_DEV = /dev/com1
254
255 # Debugging port used to communicate between GDB / avarice / simulavr.
256 DEBUG_PORT = 4242
257
258 # Debugging host used to communicate between GDB / avarice / simulavr, normally
259 # just set to localhost unless doing some sort of crazy debugging when
260 # avarice is running on a different computer.
261 DEBUG_HOST = localhost
262
263
264
265 #============================================================================
266
267
268 # Define programs and commands.
269 SHELL = sh
270 CC = avr-gcc
271 OBJCOPY = avr-objcopy
272 OBJDUMP = avr-objdump
273 SIZE = avr-size
274 AR = avr-ar rcs
275 NM = avr-nm
276 AVRDUDE = avrdude
277 REMOVE = rm -f
278 REMOVEDIR = rmdir
279 COPY = cp
280 WINSHELL = cmd
281
282
283 # Define Messages
284 # English
285 MSG_ERRORS_NONE = Errors: none
286 MSG_BEGIN = -------- begin --------
287 MSG_END = -------- end --------
288 MSG_SIZE_BEFORE = Size before:
289 MSG_SIZE_AFTER = Size after:
290 MSG_COFF = Converting to AVR COFF:
291 MSG_EXTENDED_COFF = Converting to AVR Extended COFF:
292 MSG_FLASH = Creating load file for Flash:
293 MSG_EEPROM = Creating load file for EEPROM:
294 MSG_EXTENDED_LISTING = Creating Extended Listing:
295 MSG_SYMBOL_TABLE = Creating Symbol Table:
296 MSG_LINKING = Linking:
297 MSG_COMPILING = Compiling C:
298 MSG_COMPILING_CPP = Compiling C++:
299 MSG_ASSEMBLING = Assembling:
300 MSG_CLEANING = Cleaning project:
301 MSG_CREATING_LIBRARY = Creating library:
302
303
304
305
306 # Define all object files.
307 OBJ = $(patsubst %.c,$(OBJDIR)/%.o,$(patsubst %.cpp,$(OBJDIR)/%.o,$(patsubst %.S,$(OBJDIR)/%.o,$(SRC))))
308
309 # Define all listing files.
310 LST = $(patsubst %.c,$(OBJDIR)/%.lst,$(patsubst %.cpp,$(OBJDIR)/%.lst,$(patsubst %.S,$(OBJDIR)/%.lst,$(SRC))))
311
312
313 # Compiler flags to generate dependency files.
314 GENDEPFLAGS = -MMD -MP -MF .dep/$(@F).d
315
316
317 # Combine all necessary flags and optional flags.
318 # Add target processor to flags.
319 ALL_CFLAGS = -mmcu=$(MCU) -I. $(CFLAGS) $(GENDEPFLAGS)
320 ALL_CPPFLAGS = -mmcu=$(MCU) -I. -x c++ $(CPPFLAGS) $(GENDEPFLAGS)
321 ALL_ASFLAGS = -mmcu=$(MCU) -I. -x assembler-with-cpp $(ASFLAGS)
322
323
324
325
326
327 # Default target.
328 all: begin gccversion sizebefore build sizeafter end
329
330 # Change the build target to build a HEX file or a library.
331 build: elf hex eep lss sym
332 #build: lib
333
334
335 elf: $(TARGET).elf
336 hex: $(TARGET).hex
337 eep: $(TARGET).eep
338 lss: $(TARGET).lss
339 sym: $(TARGET).sym
340 LIBNAME=lib$(TARGET).a
341 lib: $(LIBNAME)
342
343
344
345 # Eye candy.
346 # AVR Studio 3.x does not check make's exit code but relies on
347 # the following magic strings to be generated by the compile job.
348 begin:
349 @echo
350 @echo $(MSG_BEGIN)
351
352 end:
353 @echo $(MSG_END)
354 @echo
355
356
357 # Display size of file.
358 HEXSIZE = $(SIZE) --target=$(FORMAT) $(TARGET).hex
359 #ELFSIZE = $(SIZE) --mcu=$(MCU) --format=avr $(TARGET).elf
360 ELFSIZE = $(SIZE) $(TARGET).elf
361
362 sizebefore:
363 @if test -f $(TARGET).elf; then echo; echo $(MSG_SIZE_BEFORE); $(ELFSIZE); \
364 2>/dev/null; echo; fi
365
366 sizeafter:
367 @if test -f $(TARGET).elf; then echo; echo $(MSG_SIZE_AFTER); $(ELFSIZE); \
368 2>/dev/null; echo; fi
369
370
371
372 # Display compiler version information.
373 gccversion :
374 @$(CC) --version
375
376
377
378 # Program the device.
379 program: $(TARGET).hex $(TARGET).eep
380 $(AVRDUDE) $(AVRDUDE_FLAGS) $(AVRDUDE_WRITE_FLASH) $(AVRDUDE_WRITE_EEPROM)
381
382
383 # Generate avr-gdb config/init file which does the following:
384 # define the reset signal, load the target file, connect to target, and set
385 # a breakpoint at main().
386 gdb-config:
387 @$(REMOVE) $(GDBINIT_FILE)
388 @echo define reset >> $(GDBINIT_FILE)
389 @echo SIGNAL SIGHUP >> $(GDBINIT_FILE)
390 @echo end >> $(GDBINIT_FILE)
391 @echo file $(TARGET).elf >> $(GDBINIT_FILE)
392 @echo target remote $(DEBUG_HOST):$(DEBUG_PORT) >> $(GDBINIT_FILE)
393 ifeq ($(DEBUG_BACKEND),simulavr)
394 @echo load >> $(GDBINIT_FILE)
395 endif
396 @echo break main >> $(GDBINIT_FILE)
397
398 debug: gdb-config $(TARGET).elf
399 ifeq ($(DEBUG_BACKEND), avarice)
400 @echo Starting AVaRICE - Press enter when "waiting to connect" message displays.
401 @$(WINSHELL) /c start avarice --jtag $(JTAG_DEV) --erase --program --file \
402 $(TARGET).elf $(DEBUG_HOST):$(DEBUG_PORT)
403 @$(WINSHELL) /c pause
404
405 else
406 @$(WINSHELL) /c start simulavr --gdbserver --device $(MCU) --clock-freq \
407 $(DEBUG_MFREQ) --port $(DEBUG_PORT)
408 endif
409 @$(WINSHELL) /c start avr-$(DEBUG_UI) --command=$(GDBINIT_FILE)
410
411
412
413
414 # Convert ELF to COFF for use in debugging / simulating in AVR Studio or VMLAB.
415 COFFCONVERT = $(OBJCOPY) --debugging
416 COFFCONVERT += --change-section-address .data-0x800000
417 COFFCONVERT += --change-section-address .bss-0x800000
418 COFFCONVERT += --change-section-address .noinit-0x800000
419 COFFCONVERT += --change-section-address .eeprom-0x810000
420
421
422
423 coff: $(TARGET).elf
424 @echo
425 @echo $(MSG_COFF) $(TARGET).cof
426 $(COFFCONVERT) -O coff-avr $< $(TARGET).cof
427
428
429 extcoff: $(TARGET).elf
430 @echo
431 @echo $(MSG_EXTENDED_COFF) $(TARGET).cof
432 $(COFFCONVERT) -O coff-ext-avr $< $(TARGET).cof
433
434
435
436 # Create final output files (.hex, .eep) from ELF output file.
437 %.hex: %.elf
438 @echo
439 @echo $(MSG_FLASH) $@
440 $(OBJCOPY) -O $(FORMAT) -R .eeprom -R .fuse -R .lock -R .signature $< $@
441
442 %.eep: %.elf
443 @echo
444 @echo $(MSG_EEPROM) $@
445 -$(OBJCOPY) -j .eeprom --set-section-flags=.eeprom="alloc,load" \
446 --change-section-lma .eeprom=0 --no-change-warnings -O $(FORMAT) $< $@ || exit 0
447
448 # Create extended listing file from ELF output file.
449 %.lss: %.elf
450 @echo
451 @echo $(MSG_EXTENDED_LISTING) $@
452 $(OBJDUMP) -h -S -z $< > $@
453
454 # Create a symbol table from ELF output file.
455 %.sym: %.elf
456 @echo
457 @echo $(MSG_SYMBOL_TABLE) $@
458 $(NM) -n $< > $@
459
460
461
462 # Create library from object files.
463 .SECONDARY : $(TARGET).a
464 .PRECIOUS : $(OBJ)
465 %.a: $(OBJ)
466 @echo
467 @echo $(MSG_CREATING_LIBRARY) $@
468 $(AR) $@ $(OBJ)
469
470
471 # Link: create ELF output file from object files.
472 .SECONDARY : $(TARGET).elf
473 .PRECIOUS : $(OBJ)
474 %.elf: $(OBJ)
475 @echo
476 @echo $(MSG_LINKING) $@
477 $(CC) $(ALL_CFLAGS) $^ --output $@ $(LDFLAGS)
478
479
480 # Compile: create object files from C source files.
481 $(OBJDIR)/%.o : %.c
482 @echo
483 @echo $(MSG_COMPILING) $<
484 $(CC) -c $(ALL_CFLAGS) $< -o $@
485
486
487 # Compile: create object files from C++ source files.
488 $(OBJDIR)/%.o : %.cpp
489 @echo
490 @echo $(MSG_COMPILING_CPP) $<
491 $(CC) -c $(ALL_CPPFLAGS) $< -o $@
492
493
494 # Compile: create assembler files from C source files.
495 %.s : %.c
496 $(CC) -S $(ALL_CFLAGS) $< -o $@
497
498
499 # Compile: create assembler files from C++ source files.
500 %.s : %.cpp
501 $(CC) -S $(ALL_CPPFLAGS) $< -o $@
502
503
504 # Assemble: create object files from assembler source files.
505 $(OBJDIR)/%.o : %.S
506 @echo
507 @echo $(MSG_ASSEMBLING) $<
508 $(CC) -c $(ALL_ASFLAGS) $< -o $@
509
510
511 # Create preprocessed source for use in sending a bug report.
512 %.i : %.c
513 $(CC) -E -mmcu=$(MCU) -I. $(CFLAGS) $< -o $@
514
515
516 # Target: clean project.
517 clean: begin clean_list end
518
519 clean_list :
520 @echo
521 $(REMOVE) $(TARGET).hex
522 $(REMOVE) $(TARGET).eep
523 $(REMOVE) $(TARGET).cof
524 $(REMOVE) $(TARGET).elf
525 $(REMOVE) $(TARGET).map
526 $(REMOVE) $(TARGET).sym
527 $(REMOVE) $(TARGET).lss
528 $(REMOVE) $(OBJ)
529 $(REMOVE) $(LST)
530 $(REMOVE) $(OBJ:.o=.s)
531 $(REMOVE) $(OBJ:.o=.i)
532 $(REMOVE) -r .dep
533 $(REMOVEDIR) $(OBJDIR)
534
535
536 # Create object files directory
537 $(shell mkdir $(OBJDIR) 2>/dev/null)
538
539
540 # Include the dependency files.
541 -include $(shell mkdir .dep 2>/dev/null) $(wildcard .dep/*)
542
543
544 # Listing of phony targets.
545 .PHONY : all begin finish end sizebefore sizeafter gccversion \
546 build elf hex eep lss sym coff extcoff \
547 clean clean_list program debug gdb-config
548
Imprint / Impressum