Subversion Repositories HomeAutomation

Rev

Details | Last modification | View Log | SVN | RSS feed

Rev Author Line No. Line
171 eqlazer 1
# Hey Emacs, this is a -*- makefile -*-
2
#
3
# WinAVR makefile written by Eric B. Weddington, Jörg Wunsch, et al.
4
# Released to the Public Domain
5
# Please read the make user manual!
6
#
7
# Additional material for this makefile was submitted by:
8
#  Tim Henigan
9
#  Peter Fleury
10
#  Reiner Patommel
11
#  Sander Pool
12
#  Frederik Rouleau
13
#  Markus Pfaff
14
#
15
# On command line:
16
#
17
# make all = Make software.
18
#
19
# make clean = Clean out built project files.
20
#
21
# make coff = Convert ELF to AVR COFF (for use with AVR Studio 3.x or VMLAB).
22
#
23
# make extcoff = Convert ELF to AVR Extended COFF (for use with AVR Studio
24
#                4.07 or greater).
25
#
26
# make program = Download the hex file to the device, using avrdude.  Please
27
#                customize the avrdude settings below first!
28
#
29
# make filename.s = Just compile filename.c into the assembler code only
30
#
31
# To rebuild project do "make clean" then "make all".
32
#
33
 
34
########
35
# Differences from WinAVR 20040720 sample:
36
# - DEPFLAGS according to Eric Weddingtion's fix (avrfreaks/gcc-forum)
37
# - F_OSC Define in CFLAGS and AFLAGS
38
 
39
 
40
# MCU name
41
#MCU = atmega32
42
MCU = atmega88
43
#MCU = atmega16
44
 
45
 
46
# Main Oscillator Frequency
47
##F_OSC = 1000000
48
##F_OSC = 1843200
49
##F_OSC = 2000000
50
##F_OSC = 3686400
51
##F_OSC = 4000000
52
F_OSC = 8000000
53
#F_OSC = 11059200
54
##F_OSC = 16000000
55
 
56
# Output format. (can be srec, ihex, binary)
57
FORMAT = ihex
58
 
59
 
60
# Target file name (without extension).
61
TARGET = main
62
 
63
LIBDIR = ../lib/src/
64
 
65
# List C source files here. (C dependencies are automatically generated.)
66
SRC =	$(TARGET).c\
67
		$(LIBDIR)mcu/mcu.c\
68
		$(LIBDIR)mcu/serial.c\
69
		$(LIBDIR)mcu/uart.c\
70
		$(LIBDIR)mcu/timebase.c\
71
		$(LIBDIR)can/can.c\
72
		$(LIBDIR)can/mcp2515/mcp2515.c\
245 eqlazer 73
		$(LIBDIR)sensor/tc1047/tc1047.c\
171 eqlazer 74
 
75
# List Assembler source files here.
76
# Make them always end in a capital .S.  Files ending in a lowercase .s
77
# will not be considered source files but generated files (assembler
78
# output from the compiler), and will be deleted upon "make clean"!
79
# Even though the DOS/Win* filesystem matches both .s and .S the same,
80
# it will preserve the spelling of the filenames, and gcc itself does
81
# care about how the name is spelled on its command-line.
82
ASRC = 
83
 
84
 
85
# Optimization level, can be [0, 1, 2, 3, s]. 
86
# 0 = turn off optimization. s = optimize for size.
87
# (Note: 3 is not always the best optimization level. See avr-libc FAQ.)
88
OPT = s
89
#OPT = 3
90
 
91
# Debugging format.
92
# Native formats for AVR-GCC's -g are stabs [default], or dwarf-2.
93
# AVR (extended) COFF requires stabs, plus an avr-objcopy run.
94
#DEBUG = stabs
95
DEBUG = dwarf-2
96
 
97
# List any extra directories to look for include files here.
98
#     Each directory must be seperated by a space.
245 eqlazer 99
EXTRAINCDIRS = 	$(LIBDIR)/can\
100
				$(LIBDIR)/can/mcp2515\
101
				$(LIBDIR)/mcu\
102
				$(LIBDIR)/lcd\
103
				$(LIBDIR)/../funcdefs\
104
				$(LIBDIR)/sensor/tc1047 
171 eqlazer 105
 
106
# Compiler flag to set the C Standard level.
107
# c89   - "ANSI" C
108
# gnu89 - c89 plus GCC extensions
109
# c99   - ISO C99 standard (not yet fully implemented)
110
# gnu99 - c99 plus GCC extensions
111
CSTANDARD = -std=gnu99
112
 
113
# Place -D or -U options here
114
CDEFS =
115
 
116
# Place -I options here
117
CINCS =
118
 
119
 
120
# Compiler flags.
121
#  -g*:          generate debugging information
122
#  -O*:          optimization level
123
#  -f...:        tuning, see GCC manual and avr-libc documentation
124
#  -Wall...:     warning level
125
#  -Wa,...:      tell GCC to pass this to the assembler.
126
#    -adhlns...: create assembler listing
127
CFLAGS = 
128
#CFLAGS += -g$(DEBUG)
129
CFLAGS += $(CDEFS) $(CINCS)
130
CFLAGS += -O$(OPT)
131
CFLAGS += -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums
132
CFLAGS += -Wall -Wstrict-prototypes
133
CFLAGS += -Wa,-adhlns=$(<:.c=.lst)
134
CFLAGS += $(patsubst %,-I%,$(EXTRAINCDIRS))
135
CFLAGS += $(CSTANDARD)
136
CFLAGS += -DF_OSC=$(F_OSC)
137
 
138
 
139
 
140
# Assembler flags.
141
#  -Wa,...:   tell GCC to pass this to the assembler.
142
#  -ahlms:    create listing
143
#  -gstabs:   have the assembler create line number information; note that
144
#             for use in COFF files, additional information about filenames
145
#             and function names needs to be present in the assembler source
146
#             files -- see avr-libc docs [FIXME: not yet described there]
147
##ASFLAGS = -Wa,-adhlns=$(<:.S=.lst),-gstabs 
148
ASFLAGS = -Wa,-adhlns=$(<:.S=.lst),-g$(DEBUG)
149
ASFLAGS += -DF_OSC=$(F_OSC)
150
 
151
 
152
#Additional libraries.
153
 
154
# Minimalistic printf version
155
PRINTF_LIB_MIN = -Wl,-u,vfprintf -lprintf_min
156
 
157
# Floating point printf version (requires MATH_LIB = -lm below)
158
PRINTF_LIB_FLOAT = -Wl,-u,vfprintf -lprintf_flt
159
 
160
PRINTF_LIB = $(PRINTF_LIB_MIN)
161
 
162
# Minimalistic scanf version
163
SCANF_LIB_MIN = -Wl,-u,vfscanf -lscanf_min
164
 
165
# Floating point + %[ scanf version (requires MATH_LIB = -lm below)
166
SCANF_LIB_FLOAT = -Wl,-u,vfscanf -lscanf_flt
167
 
168
SCANF_LIB = 
169
 
170
MATH_LIB = -lm
171
 
172
# External memory options
173
 
174
# 64 KB of external RAM, starting after internal RAM (ATmega128!),
175
# used for variables (.data/.bss) and heap (malloc()).
176
#EXTMEMOPTS = -Wl,-Tdata=0x801100,--defsym=__heap_end=0x80ffff
177
 
178
# 64 KB of external RAM, starting after internal RAM (ATmega128!),
179
# only used for heap (malloc()).
180
#EXTMEMOPTS = -Wl,--defsym=__heap_start=0x801100,--defsym=__heap_end=0x80ffff
181
 
182
EXTMEMOPTS =
183
 
184
# Linker flags.
185
#  -Wl,...:     tell GCC to pass this to linker.
186
#    -Map:      create map file
187
#    --cref:    add cross reference to  map file
188
LDFLAGS = -Wl,-Map=$(TARGET).map,--cref
189
LDFLAGS += $(EXTMEMOPTS)
190
LDFLAGS += $(PRINTF_LIB) $(SCANF_LIB) $(MATH_LIB)
191
 
192
 
193
 
194
 
195
# Programming support using avrdude. Settings and variables.
196
 
197
# Programming hardware: alf avr910 avrisp bascom bsd 
198
# dt006 pavr picoweb pony-stk200 sp12 stk200 stk500
199
#
200
# Type: avrdude -c ?
201
# to get a full listing.
202
#
203
AVRDUDE_PROGRAMMER = avrispv2
204
 
205
# com1 = serial port. Use lpt1 to connect to parallel port.
245 eqlazer 206
AVRDUDE_PORT = /dev/ttyUSB0    # programmer connected to serial device
171 eqlazer 207
AVRDUDE_BAUD = 115200
208
 
209
AVRDUDE_WRITE_FLASH = -U flash:w:$(TARGET).hex
210
#AVRDUDE_WRITE_EEPROM = -U eeprom:w:$(TARGET).eep
211
 
212
 
213
# Uncomment the following if you want avrdude's erase cycle counter.
214
# Note that this counter needs to be initialized first using -Yn,
215
# see avrdude manual.
216
#AVRDUDE_ERASE_COUNTER = -y
217
 
218
# Uncomment the following if you do /not/ wish a verification to be
219
# performed after programming the device.
220
#AVRDUDE_NO_VERIFY = -V
221
 
222
# Increase verbosity level.  Please use this when submitting bug
223
# reports about avrdude. See <http://savannah.nongnu.org/projects/avrdude> 
224
# to submit bug reports.
225
#AVRDUDE_VERBOSE = -v -v
226
 
227
AVRDUDE_FLAGS = -p $(MCU) -P $(AVRDUDE_PORT) -c $(AVRDUDE_PROGRAMMER) -b $(AVRDUDE_BAUD)
228
AVRDUDE_FLAGS += $(AVRDUDE_NO_VERIFY)
229
AVRDUDE_FLAGS += $(AVRDUDE_VERBOSE)
230
AVRDUDE_FLAGS += $(AVRDUDE_ERASE_COUNTER)
231
 
232
 
233
 
234
# ---------------------------------------------------------------------------
235
 
236
# Define directories, if needed.
237
DIRAVR = c:/progra~1/winavr
238
DIRAVRBIN = $(DIRAVR)/bin
239
DIRAVRUTILS = $(DIRAVR)/utils/bin
240
DIRINC = .
241
DIRLIB = $(DIRAVR)/avr/lib
242
 
243
 
244
# Define programs and commands.
245
SHELL = sh
246
CC = avr-gcc
247
OBJCOPY = avr-objcopy
248
OBJDUMP = avr-objdump
249
SIZE = avr-size
250
NM = avr-nm
251
AVRDUDE = avrdude
252
REMOVE = rm -f
253
COPY = cp
254
 
255
 
256
 
257
 
258
# Define Messages
259
# English
260
MSG_ERRORS_NONE = Errors: none
261
MSG_BEGIN = -------- begin --------
262
MSG_END = --------  end  --------
263
MSG_SIZE_BEFORE = Size before: 
264
MSG_SIZE_AFTER = Size after:
265
MSG_COFF = Converting to AVR COFF:
266
MSG_EXTENDED_COFF = Converting to AVR Extended COFF:
267
MSG_FLASH = Creating load file for Flash:
268
MSG_EEPROM = Creating load file for EEPROM:
269
MSG_EXTENDED_LISTING = Creating Extended Listing:
270
MSG_SYMBOL_TABLE = Creating Symbol Table:
271
MSG_LINKING = Linking:
272
MSG_COMPILING = Compiling:
273
MSG_ASSEMBLING = Assembling:
274
MSG_CLEANING = Cleaning project:
275
 
276
 
277
 
278
 
279
# Define all object files.
280
OBJ = $(SRC:.c=.o) $(ASRC:.S=.o) 
281
 
282
# Define all listing files.
283
LST = $(ASRC:.S=.lst) $(SRC:.c=.lst)
284
 
285
 
286
# Compiler flags to generate dependency files.
287
### GENDEPFLAGS = -Wp,-M,-MP,-MT,$(*F).o,-MF,.dep/$(@F).d
288
GENDEPFLAGS = -MD -MP -MF .dep/$(@F).d
289
 
290
# Combine all necessary flags and optional flags.
291
# Add target processor to flags.
292
ALL_CFLAGS = -mmcu=$(MCU) -I. $(CFLAGS) $(GENDEPFLAGS)
293
ALL_ASFLAGS = -mmcu=$(MCU) -I. -x assembler-with-cpp $(ASFLAGS)
294
 
295
 
296
 
297
 
298
 
299
# Default target.
300
all: begin gccversion sizebefore build sizeafter finished end
301
 
302
build: elf hex eep lss sym
303
 
304
elf: $(TARGET).elf
305
hex: $(TARGET).hex
306
eep: $(TARGET).eep
307
lss: $(TARGET).lss 
308
sym: $(TARGET).sym
309
 
310
 
311
 
312
# Eye candy.
313
# AVR Studio 3.x does not check make's exit code but relies on
314
# the following magic strings to be generated by the compile job.
315
begin:
316
	@echo
317
	@echo $(MSG_BEGIN)
318
 
319
finished:
320
	@echo $(MSG_ERRORS_NONE)
321
 
322
end:
323
	@echo $(MSG_END)
324
	@echo
325
 
326
 
327
# Display size of file.
328
HEXSIZE = $(SIZE) --target=$(FORMAT) $(TARGET).hex
329
ELFSIZE = $(SIZE) -A $(TARGET).elf
330
sizebefore:
331
	@if [ -f $(TARGET).elf ]; then echo; echo $(MSG_SIZE_BEFORE); $(ELFSIZE); echo; fi
332
 
333
sizeafter:
334
	@if [ -f $(TARGET).elf ]; then echo; echo $(MSG_SIZE_AFTER); $(ELFSIZE); echo; fi
335
 
336
 
337
 
338
# Display compiler version information.
339
gccversion : 
340
	@$(CC) --version
341
 
342
 
343
 
344
# Program the device.  
345
program: $(TARGET).hex $(TARGET).eep
346
	$(AVRDUDE) $(AVRDUDE_FLAGS) $(AVRDUDE_WRITE_FLASH) $(AVRDUDE_WRITE_EEPROM)
347
 
348
#programlock: 
349
#	$(AVRDUDE) $(AVRDUDE_FLAGS) -U lock:w:0x00:m
350
 
351
#programinit: 
352
#	$(AVRDUDE) $(AVRDUDE_FLAGS) -U hfuse:w:0xd9:m -U lfuse:w:0xe4:m
353
 
354
# Convert ELF to COFF for use in debugging / simulating in AVR Studio or VMLAB.
355
COFFCONVERT=$(OBJCOPY) --debugging \
356
--change-section-address .data-0x800000 \
357
--change-section-address .bss-0x800000 \
358
--change-section-address .noinit-0x800000 \
359
--change-section-address .eeprom-0x810000 
360
 
361
 
362
coff: $(TARGET).elf
363
	@echo
364
	@echo $(MSG_COFF) $(TARGET).cof
365
	$(COFFCONVERT) -O coff-avr $< $(TARGET).cof
366
 
367
 
368
extcoff: $(TARGET).elf
369
	@echo
370
	@echo $(MSG_EXTENDED_COFF) $(TARGET).cof
371
	$(COFFCONVERT) -O coff-ext-avr $< $(TARGET).cof
372
 
373
 
374
 
375
# Create final output files (.hex, .eep) from ELF output file.
376
%.hex: %.elf
377
	@echo
378
	@echo $(MSG_FLASH) $@
379
	$(OBJCOPY) -O $(FORMAT) -R .eeprom $< $@
380
 
381
%.eep: %.elf
382
	@echo
383
	@echo $(MSG_EEPROM) $@
384
	-$(OBJCOPY) -j .eeprom --set-section-flags=.eeprom="alloc,load" \
385
	--change-section-lma .eeprom=0 -O $(FORMAT) $< $@
386
 
387
# Create extended listing file from ELF output file.
388
%.lss: %.elf
389
	@echo
390
	@echo $(MSG_EXTENDED_LISTING) $@
391
	$(OBJDUMP) -h -S $< > $@
392
 
393
# Create a symbol table from ELF output file.
394
%.sym: %.elf
395
	@echo
396
	@echo $(MSG_SYMBOL_TABLE) $@
397
	$(NM) -n $< > $@
398
 
399
 
400
 
401
# Link: create ELF output file from object files.
402
.SECONDARY : $(TARGET).elf
403
.PRECIOUS : $(OBJ)
404
%.elf: $(OBJ)
405
	@echo
406
	@echo $(MSG_LINKING) $@
407
	$(CC) $(ALL_CFLAGS) $(OBJ) --output $@ $(LDFLAGS)
408
 
409
 
410
# Compile: create object files from C source files.
411
%.o : %.c
412
	@echo
413
	@echo $(MSG_COMPILING) $<
414
	$(CC) -c $(ALL_CFLAGS) $< -o $@ 
415
 
416
 
417
# Compile: create assembler files from C source files.
418
%.s : %.c
419
	$(CC) -S $(ALL_CFLAGS) $< -o $@
420
 
421
 
422
# Assemble: create object files from assembler source files.
423
%.o : %.S
424
	@echo
425
	@echo $(MSG_ASSEMBLING) $<
426
	$(CC) -c $(ALL_ASFLAGS) $< -o $@
427
 
428
 
429
 
430
# Target: clean project.
431
clean: begin clean_list finished end
432
 
433
clean_list :
434
	@echo
435
	@echo $(MSG_CLEANING)
436
	$(REMOVE) $(TARGET).hex
437
	$(REMOVE) $(TARGET).eep
438
	$(REMOVE) $(TARGET).obj
439
	$(REMOVE) $(TARGET).cof
440
	$(REMOVE) $(TARGET).elf
441
	$(REMOVE) $(TARGET).map
442
	$(REMOVE) $(TARGET).obj
443
	$(REMOVE) $(TARGET).a90
444
	$(REMOVE) $(TARGET).sym
445
	$(REMOVE) $(TARGET).lnk
446
	$(REMOVE) $(TARGET).lss
447
	$(REMOVE) $(OBJ)
448
	$(REMOVE) $(LST)
449
	$(REMOVE) $(SRC:.c=.s)
450
	$(REMOVE) $(SRC:.c=.d)
451
	$(REMOVE) .dep/*
452
 
453
 
454
 
455
# Include the dependency files.
456
-include $(shell mkdir .dep 2>/dev/null) $(wildcard .dep/*)
457
 
458
 
459
# Listing of phony targets.
460
.PHONY : all begin finish end sizebefore sizeafter gccversion \
461
build elf hex eep lss sym coff extcoff \
462
clean clean_list program programlock programinit
463