UNPKG

14.4 kBPlain TextView Raw
1# Hey Emacs, this is a -*- makefile -*-
2#----------------------------------------------------------------------------
3# WinAVR Makefile Template written by Eric B. Weddington, Jörg 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#
16#----------------------------------------------------------------------------
17# On command line:
18#
19# make all = Make software.
20#
21# make clean = Clean out built project files.
22#
23# make coff = Convert ELF to AVR COFF.
24#
25# make extcoff = Convert ELF to AVR Extended COFF.
26#
27# make program = Download the hex file to the device, using avrdude.
28# Please customize the avrdude settings below first!
29#
30# make debug = Start either simulavr or avarice as specified for debugging,
31# with avr-gdb or avr-insight as the front end for debugging.
32#
33# make filename.s = Just compile filename.c into the assembler code only.
34#
35# make filename.i = Create a preprocessed source file for use in submitting
36# bug reports to the GCC project.
37#
38# To rebuild project do "make clean" then "make all".
39#----------------------------------------------------------------------------
40
41
42# MCU name
43MCU = attiny84
44
45
46# Processor frequency.
47# This will define a symbol, F_CPU, in all source code files equal to the
48# processor frequency. You can then use this symbol in your source code to
49# calculate timings. Do NOT tack on a 'UL' at the end, this will be done
50# automatically to create a 32-bit value in your source code.
51F_CPU = 8000000
52
53
54# Output format. (can be srec, ihex, binary)
55FORMAT = ihex
56
57
58# Target file name (without extension).
59TARGET = src/infrared-attx4
60
61
62# List C source files here. (C dependencies are automatically generated.)
63SRC = $(TARGET).c src/deps/attiny-firmware-common/src/common.c
64
65
66# List Assembler source files here.
67# Make them always end in a capital .S. Files ending in a lowercase .s
68# will not be considered source files but generated files (assembler
69# output from the compiler), and will be deleted upon "make clean"!
70# Even though the DOS/Win* filesystem matches both .s and .S the same,
71# it will preserve the spelling of the filenames, and gcc itself does
72# care about how the name is spelled on its command-line.
73ASRC =
74
75
76# Optimization level, can be [0, 1, 2, 3, s].
77# 0 = turn off optimization. s = optimize for size.
78# (Note: 3 is not always the best optimization level. See avr-libc FAQ.)
79OPT = s
80
81
82# Debugging format.
83# Native formats for AVR-GCC's -g are dwarf-2 [default] or stabs.
84# AVR Studio 4.10 requires dwarf-2.
85# AVR [Extended] COFF format requires stabs, plus an avr-objcopy run.
86DEBUG = dwarf-2
87
88
89# List any extra directories to look for include files here.
90# Each directory must be seperated by a space.
91# Use forward slashes for directory separators.
92# For a directory that has spaces, enclose it in quotes.
93EXTRAINCDIRS =
94
95
96# Compiler flag to set the C Standard level.
97# c89 = "ANSI" C
98# gnu89 = c89 plus GCC extensions
99# c99 = ISO C99 standard (not yet fully implemented)
100# gnu99 = c99 plus GCC extensions
101CSTANDARD = -std=gnu99
102
103
104# Place -D or -U options here
105CDEFS = -DF_CPU=$(F_CPU)UL
106
107
108# Place -I options here
109CINCS =
110
111
112
113#---------------- Compiler Options ----------------
114# -g*: generate debugging information
115# -O*: optimization level
116# -f...: tuning, see GCC manual and avr-libc documentation
117# -Wall...: warning level
118# -Wa,...: tell GCC to pass this to the assembler.
119# -adhlns...: create assembler listing
120CFLAGS = -g$(DEBUG)
121CFLAGS += $(CDEFS) $(CINCS)
122CFLAGS += -O$(OPT)
123CFLAGS += -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums
124CFLAGS += -Wall -Wstrict-prototypes
125CFLAGS += -Wa,-adhlns=$(<:.c=.lst)
126CFLAGS += $(patsubst %,-I%,$(EXTRAINCDIRS))
127CFLAGS += $(CSTANDARD)
128
129
130#---------------- Assembler Options ----------------
131# -Wa,...: tell GCC to pass this to the assembler.
132# -ahlms: create listing
133# -gstabs: have the assembler create line number information; note that
134# for use in COFF files, additional information about filenames
135# and function names needs to be present in the assembler source
136# files -- see avr-libc docs [FIXME: not yet described there]
137ASFLAGS = -Wa,-adhlns=$(<:.S=.lst),-gstabs
138
139
140#---------------- Library Options ----------------
141# Minimalistic printf version
142PRINTF_LIB_MIN = -Wl,-u,vfprintf -lprintf_min
143
144# Floating point printf version (requires MATH_LIB = -lm below)
145PRINTF_LIB_FLOAT = -Wl,-u,vfprintf -lprintf_flt
146
147# If this is left blank, then it will use the Standard printf version.
148PRINTF_LIB =
149#PRINTF_LIB = $(PRINTF_LIB_MIN)
150#PRINTF_LIB = $(PRINTF_LIB_FLOAT)
151
152
153# Minimalistic scanf version
154SCANF_LIB_MIN = -Wl,-u,vfscanf -lscanf_min
155
156# Floating point + %[ scanf version (requires MATH_LIB = -lm below)
157SCANF_LIB_FLOAT = -Wl,-u,vfscanf -lscanf_flt
158
159# If this is left blank, then it will use the Standard scanf version.
160SCANF_LIB =
161#SCANF_LIB = $(SCANF_LIB_MIN)
162#SCANF_LIB = $(SCANF_LIB_FLOAT)
163
164
165MATH_LIB = -lm
166
167
168
169#---------------- External Memory Options ----------------
170
171# 64 KB of external RAM, starting after internal RAM (ATmega128!),
172# used for variables (.data/.bss) and heap (malloc()).
173#EXTMEMOPTS = -Wl,-Tdata=0x801100,--defsym=__heap_end=0x80ffff
174
175# 64 KB of external RAM, starting after internal RAM (ATmega128!),
176# only used for heap (malloc()).
177#EXTMEMOPTS = -Wl,--defsym=__heap_start=0x801100,--defsym=__heap_end=0x80ffff
178
179EXTMEMOPTS =
180
181
182
183#---------------- Linker Options ----------------
184# -Wl,...: tell GCC to pass this to linker.
185# -Map: create map file
186# --cref: add cross reference to map file
187LDFLAGS = -Wl,-Map=$(TARGET).map,--cref
188LDFLAGS += $(EXTMEMOPTS)
189LDFLAGS += $(PRINTF_LIB) $(SCANF_LIB) $(MATH_LIB)
190
191
192
193#---------------- Programming Options (avrdude) ----------------
194
195# Programming hardware: alf avr910 avrisp bascom bsd
196# dt006 pavr picoweb pony-stk200 sp12 stk200 stk500
197#
198# Type: avrdude -c ?
199# to get a full listing.
200AVRDUDE_PROGRAMMER = arduino
201#stk200
202#AVRDUDE_PROGRAMMER = ponyser
203
204# com1 = serial port. Use lpt1 to connect to parallel port.
205AVRDUDE_PORT = lpt1
206#AVRDUDE_PORT = COM1
207
208AVRDUDE_WRITE_FLASH = -U flash:w:$(TARGET).hex
209#AVRDUDE_WRITE_EEPROM = -U eeprom:w:$(TARGET).eep
210
211
212# Uncomment the following if you want avrdude's erase cycle counter.
213# Note that this counter needs to be initialized first using -Yn,
214# see avrdude manual.
215#AVRDUDE_ERASE_COUNTER = -y
216
217# Uncomment the following if you do /not/ wish a verification to be
218# performed after programming the device.
219#AVRDUDE_NO_VERIFY = -V
220
221# Increase verbosity level. Please use this when submitting bug
222# reports about avrdude. See <http://savannah.nongnu.org/projects/avrdude>
223# to submit bug reports.
224#AVRDUDE_VERBOSE = -v -v
225
226AVRDUDE_FLAGS = -p $(MCU) -P $(AVRDUDE_PORT) -c $(AVRDUDE_PROGRAMMER)
227AVRDUDE_FLAGS += $(AVRDUDE_NO_VERIFY)
228AVRDUDE_FLAGS += $(AVRDUDE_VERBOSE)
229AVRDUDE_FLAGS += $(AVRDUDE_ERASE_COUNTER)
230
231#---------------- Programming Options (STK500) ----------------
232# Programming hardware: stk500
233
234STK500 = stk500
235
236# Location of STK500.exe - no trailing '\'
237STK500_PATH = C:\Program Files\Atmel\AVR Tools\STK500
238
239# The STK500 AVR ISP MKII is USB. The USB drivers must already be installed.
240# Do this normally by installing AVR Studio.
241STK500_PORT = USB
242
243#-erase chip -Program Flash -Verify Flash -File name -Serial programing(ISP)
244STK500_WRITE_FLASH = -e -pf -vf -if$(TARGET).hex -ms
245
246STK500_FLAGS = -d$(MCU) -c$(STK500_PORT)
247
248#-Set ISP frequency to 250kHz. Limit is 1/4 of internal osc which is default 1MHz
249STK500_FLAGS += -I250kHz
250
251#---------------- Debugging Options ----------------
252
253# For simulavr only - target MCU frequency.
254DEBUG_MFREQ = $(F_CPU)
255
256# Set the DEBUG_UI to either gdb or insight.
257# DEBUG_UI = gdb
258DEBUG_UI = insight
259
260# Set the debugging back-end to either avarice, simulavr.
261DEBUG_BACKEND = avarice
262#DEBUG_BACKEND = simulavr
263
264# GDB Init Filename.
265GDBINIT_FILE = __avr_gdbinit
266
267# When using avarice settings for the JTAG
268JTAG_DEV = /dev/com1
269
270# Debugging port used to communicate between GDB / avarice / simulavr.
271DEBUG_PORT = 4242
272
273# Debugging host used to communicate between GDB / avarice / simulavr, normally
274# just set to localhost unless doing some sort of crazy debugging when
275# avarice is running on a different computer.
276DEBUG_HOST = localhost
277
278
279
280#============================================================================
281
282
283# Define programs and commands.
284SHELL = sh
285CC = avr-gcc
286OBJCOPY = avr-objcopy
287OBJDUMP = avr-objdump
288SIZE = avr-size
289NM = avr-nm
290AVRDUDE = avrdude
291REMOVE = rm -f
292COPY = cp
293WINSHELL = cmd
294
295
296# Define Messages
297# English
298MSG_ERRORS_NONE = Errors: none
299MSG_BEGIN = -------- begin --------
300MSG_END = -------- end --------
301MSG_SIZE_BEFORE = Size before:
302MSG_SIZE_AFTER = Size after:
303MSG_COFF = Converting to AVR COFF:
304MSG_EXTENDED_COFF = Converting to AVR Extended COFF:
305MSG_FLASH = Creating load file for Flash:
306MSG_EEPROM = Creating load file for EEPROM:
307MSG_EXTENDED_LISTING = Creating Extended Listing:
308MSG_SYMBOL_TABLE = Creating Symbol Table:
309MSG_LINKING = Linking:
310MSG_COMPILING = Compiling:
311MSG_ASSEMBLING = Assembling:
312MSG_CLEANING = Cleaning project:
313
314
315
316
317# Define all object files.
318OBJ = $(SRC:.c=.o) $(ASRC:.S=.o)
319
320# Define all listing files.
321LST = $(SRC:.c=.lst) $(ASRC:.S=.lst)
322
323
324# Compiler flags to generate dependency files.
325GENDEPFLAGS = -MD -MP -MF .dep/$(@F).d
326
327
328# Combine all necessary flags and optional flags.
329# Add target processor to flags.
330ALL_CFLAGS = -mmcu=$(MCU) -I. $(CFLAGS) $(GENDEPFLAGS)
331ALL_ASFLAGS = -mmcu=$(MCU) -I. -x assembler-with-cpp $(ASFLAGS)
332
333
334
335
336
337# Default target.
338all: begin gccversion sizebefore build sizeafter end
339
340build: elf hex eep lss sym
341
342elf: $(TARGET).elf
343hex: $(TARGET).hex
344eep: $(TARGET).eep
345lss: $(TARGET).lss
346sym: $(TARGET).sym
347
348
349
350# Eye candy.
351# AVR Studio 3.x does not check make's exit code but relies on
352# the following magic strings to be generated by the compile job.
353begin:
354 @echo
355 @echo $(MSG_BEGIN)
356
357end:
358 @echo $(MSG_END)
359 @echo
360
361
362# Display size of file.
363HEXSIZE = $(SIZE) --target=$(FORMAT) $(TARGET).hex
364ELFSIZE = $(SIZE) -A $(TARGET).elf
365AVRMEM = avr-mem.sh $(TARGET).elf $(MCU)
366
367sizebefore:
368 @if test -f $(TARGET).elf; then echo; echo $(MSG_SIZE_BEFORE); $(ELFSIZE); \
369 $(AVRMEM) 2>/dev/null; echo; fi
370
371sizeafter:
372 @if test -f $(TARGET).elf; then echo; echo $(MSG_SIZE_AFTER); $(ELFSIZE); \
373 $(AVRMEM) 2>/dev/null; echo; fi
374
375
376
377# Display compiler version information.
378gccversion :
379 @$(CC) --version
380
381
382
383# Program the device.
384program: $(TARGET).hex $(TARGET).eep
385 $(AVRDUDE) $(AVRDUDE_FLAGS) $(AVRDUDE_WRITE_FLASH) $(AVRDUDE_WRITE_EEPROM)
386
387program_stk500: $(TARGET).hex $(TARGET).eep
388 $(STK500_PATH)\$(STK500) $(STK500_FLAGS) $(STK500_WRITE_FLASH)
389
390
391# Generate avr-gdb config/init file which does the following:
392# define the reset signal, load the target file, connect to target, and set
393# a breakpoint at main().
394gdb-config:
395 @$(REMOVE) $(GDBINIT_FILE)
396 @echo define reset >> $(GDBINIT_FILE)
397 @echo SIGNAL SIGHUP >> $(GDBINIT_FILE)
398 @echo end >> $(GDBINIT_FILE)
399 @echo file $(TARGET).elf >> $(GDBINIT_FILE)
400 @echo target remote $(DEBUG_HOST):$(DEBUG_PORT) >> $(GDBINIT_FILE)
401ifeq ($(DEBUG_BACKEND),simulavr)
402 @echo load >> $(GDBINIT_FILE)
403endif
404 @echo break main >> $(GDBINIT_FILE)
405
406debug: gdb-config $(TARGET).elf
407ifeq ($(DEBUG_BACKEND), avarice)
408 @echo Starting AVaRICE - Press enter when "waiting to connect" message displays.
409 @$(WINSHELL) /c start avarice --jtag $(JTAG_DEV) --erase --program --file \
410 $(TARGET).elf $(DEBUG_HOST):$(DEBUG_PORT)
411 @$(WINSHELL) /c pause
412
413else
414 @$(WINSHELL) /c start simulavr --gdbserver --device $(MCU) --clock-freq \
415 $(DEBUG_MFREQ) --port $(DEBUG_PORT)
416endif
417 @$(WINSHELL) /c start avr-$(DEBUG_UI) --command=$(GDBINIT_FILE)
418
419
420
421
422# Convert ELF to COFF for use in debugging / simulating in AVR Studio or VMLAB.
423COFFCONVERT=$(OBJCOPY) --debugging \
424--change-section-address .data-0x800000 \
425--change-section-address .bss-0x800000 \
426--change-section-address .noinit-0x800000 \
427--change-section-address .eeprom-0x810000
428
429
430coff: $(TARGET).elf
431 @echo
432 @echo $(MSG_COFF) $(TARGET).cof
433 $(COFFCONVERT) -O coff-avr $< $(TARGET).cof
434
435
436extcoff: $(TARGET).elf
437 @echo
438 @echo $(MSG_EXTENDED_COFF) $(TARGET).cof
439 $(COFFCONVERT) -O coff-ext-avr $< $(TARGET).cof
440
441
442
443# Create final output files (.hex, .eep) from ELF output file.
444%.hex: %.elf
445 @echo
446 @echo $(MSG_FLASH) $@
447 $(OBJCOPY) -O $(FORMAT) -R .eeprom $< $@
448
449%.eep: %.elf
450 @echo
451 @echo $(MSG_EEPROM) $@
452 -$(OBJCOPY) -j .eeprom --set-section-flags=.eeprom="alloc,load" \
453 --change-section-lma .eeprom=0 -O $(FORMAT) $< $@
454
455# Create extended listing file from ELF output file.
456%.lss: %.elf
457 @echo
458 @echo $(MSG_EXTENDED_LISTING) $@
459 $(OBJDUMP) -h -S $< > $@
460
461# Create a symbol table from ELF output file.
462%.sym: %.elf
463 @echo
464 @echo $(MSG_SYMBOL_TABLE) $@
465 $(NM) -n $< > $@
466
467
468
469# Link: create ELF output file from object files.
470.SECONDARY : $(TARGET).elf
471.PRECIOUS : $(OBJ)
472%.elf: $(OBJ)
473 @echo
474 @echo $(MSG_LINKING) $@
475 $(CC) $(ALL_CFLAGS) $^ --output $@ $(LDFLAGS)
476
477
478# Compile: create object files from C source files.
479%.o : %.c
480 @echo
481 @echo $(MSG_COMPILING) $<
482 $(CC) -c $(ALL_CFLAGS) $< -o $@
483
484
485# Compile: create assembler files from C source files.
486%.s : %.c
487 $(CC) -S $(ALL_CFLAGS) $< -o $@
488
489
490# Assemble: create object files from assembler source files.
491%.o : %.S
492 @echo
493 @echo $(MSG_ASSEMBLING) $<
494 $(CC) -c $(ALL_ASFLAGS) $< -o $@
495
496# Create preprocessed source for use in sending a bug report.
497%.i : %.c
498 $(CC) -E -mmcu=$(MCU) -I. $(CFLAGS) $< -o $@
499
500
501# Target: clean project.
502clean: begin clean_list end
503
504clean_list :
505 @echo
506 @echo $(MSG_CLEANING)
507 $(REMOVE) $(TARGET).hex
508 $(REMOVE) $(TARGET).eep
509 $(REMOVE) $(TARGET).cof
510 $(REMOVE) $(TARGET).elf
511 $(REMOVE) $(TARGET).map
512 $(REMOVE) $(TARGET).sym
513 $(REMOVE) $(TARGET).lss
514 $(REMOVE) $(OBJ)
515 $(REMOVE) $(LST)
516 $(REMOVE) $(SRC:.c=.s)
517 $(REMOVE) $(SRC:.c=.d)
518 $(REMOVE) .dep/*
519
520
521
522# Include the dependency files.
523-include $(shell mkdir .dep 2>/dev/null) $(wildcard .dep/*)
524
525
526# Listing of phony targets.
527.PHONY : all begin finish end sizebefore sizeafter gccversion \
528build elf hex eep lss sym coff extcoff \
529clean clean_list program debug gdb-config
\No newline at end of file