Subversion Repositories HomeAutomation

Rev

Rev 474 | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed

Rev 474 Rev 478
1
include bios.inc
1
include bios.inc
2
 
2
 
3
# Target file name (without extension).
3
# Target file name (without extension).
4
TARGET = main
4
TARGET = main
5
 
5
 
6
LIBDIR = ../../avr-lib
6
LIBDIR = ../../avr-lib
7
include $(LIBDIR)/system.inc
7
include $(LIBDIR)/system.inc
8
 
8
 
9
# List C source files here. (C dependencies are automatically generated.)
9
# List C source files here. (C dependencies are automatically generated.)
10
CSRC =	$(TARGET).c\
10
CSRC =	$(TARGET).c\
11
		$(LIBDIR)/drivers/timer/timebase.c\
11
		$(LIBDIR)/drivers/timer/timebase.c\
12
		$(LIBDIR)/drivers/uart/serial.c\
12
		$(LIBDIR)/drivers/uart/serial.c\
13
		$(LIBDIR)/drivers/uart/uart.c\
13
		$(LIBDIR)/drivers/uart/uart.c\
14
		$(LIBDIR)/drivers/mcu/mcu.c\
14
		$(LIBDIR)/drivers/mcu/mcu.c\
15
		$(LIBDIR)/drivers/ir/receiver/irreceiver.c\
15
		$(LIBDIR)/drivers/ir/receiver/irreceiver.c\
16
		
16
		
17
# List Assembler source files here.
17
# List Assembler source files here.
18
# Make them always end in a capital .S.  Files ending in a lowercase .s
18
# Make them always end in a capital .S.  Files ending in a lowercase .s
19
# will not be considered source files but generated files (assembler
19
# will not be considered source files but generated files (assembler
20
# output from the compiler), and will be deleted upon "make clean"!
20
# output from the compiler), and will be deleted upon "make clean"!
21
# Even though the DOS/Win* filesystem matches both .s and .S the same,
21
# Even though the DOS/Win* filesystem matches both .s and .S the same,
22
# it will preserve the spelling of the filenames, and gcc itself does
22
# it will preserve the spelling of the filenames, and gcc itself does
23
# care about how the name is spelled on its command-line.
23
# care about how the name is spelled on its command-line.
24
ASRC = 
24
ASRC = 
25
 
25
 
26
 
26
 
27
# Optimization level, can be [0, 1, 2, 3, s]. 
27
# Optimization level, can be [0, 1, 2, 3, s]. 
28
# 0 = turn off optimization. s = optimize for size.
28
# 0 = turn off optimization. s = optimize for size.
29
# (Note: 3 is not always the best optimization level. See avr-libc FAQ.)
29
# (Note: 3 is not always the best optimization level. See avr-libc FAQ.)
30
OPT = s
30
OPT = s
31
#OPT = 3
31
#OPT = 3
32
 
32
 
33
# Debugging format.
33
# Debugging format.
34
# Native formats for AVR-GCC's -g are stabs [default], or dwarf-2.
34
# Native formats for AVR-GCC's -g are stabs [default], or dwarf-2.
35
# AVR (extended) COFF requires stabs, plus an avr-objcopy run.
35
# AVR (extended) COFF requires stabs, plus an avr-objcopy run.
36
DEBUG = stabs
36
DEBUG = stabs
37
#DEBUG = dwarf-2
37
#DEBUG = dwarf-2
38
 
38
 
39
# List any extra directories to look for include files here.
39
# List any extra directories to look for include files here.
40
#     Each directory must be seperated by a space.
40
#     Each directory must be seperated by a space.
41
EXTRAINCDIRS = $(LIBDIR)
41
EXTRAINCDIRS = $(LIBDIR)
42
 
42
 
43
# Compiler flag to set the C Standard level.
43
# Compiler flag to set the C Standard level.
44
# c89   - "ANSI" C
44
# c89   - "ANSI" C
45
# gnu89 - c89 plus GCC extensions
45
# gnu89 - c89 plus GCC extensions
46
# c99   - ISO C99 standard (not yet fully implemented)
46
# c99   - ISO C99 standard (not yet fully implemented)
47
# gnu99 - c99 plus GCC extensions
47
# gnu99 - c99 plus GCC extensions
48
CSTANDARD = -std=gnu99
48
CSTANDARD = -std=gnu99
49
 
49
 
50
# Place -D or -U options here
50
# Place -D or -U options here
51
CDEFS =
51
CDEFS =
52
 
52
 
53
# Place -I options here
53
# Place -I options here
54
CINCS =
54
CINCS =
55
 
55
 
56
 
56
 
57
# Compiler flags.
57
# Compiler flags.
58
#  -g*:          generate debugging information
58
#  -g*:          generate debugging information
59
#  -O*:          optimization level
59
#  -O*:          optimization level
60
#  -f...:        tuning, see GCC manual and avr-libc documentation
60
#  -f...:        tuning, see GCC manual and avr-libc documentation
61
#  -Wall...:     warning level
61
#  -Wall...:     warning level
62
#  -Wa,...:      tell GCC to pass this to the assembler.
62
#  -Wa,...:      tell GCC to pass this to the assembler.
63
#    -adhlns...: create assembler listing
63
#    -adhlns...: create assembler listing
64
CFLAGS = -mmcu=$(MCU) -I.
64
CFLAGS = -mmcu=$(MCU) -I.
65
CFLAGS += -g$(DEBUG)
65
CFLAGS += -g$(DEBUG)
66
CFLAGS += $(CDEFS) $(CINCS)
66
CFLAGS += $(CDEFS) $(CINCS)
67
CFLAGS += -O$(OPT)
67
CFLAGS += -O$(OPT)
68
CFLAGS += -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums
68
CFLAGS += -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums
69
CFLAGS += -Wall -Wstrict-prototypes
69
CFLAGS += -Wall -Wstrict-prototypes
70
CFLAGS += -Wa,-adhlns=$(<:.c=.lst)
70
CFLAGS += -Wa,-adhlns=$(<:.c=.lst)
71
CFLAGS += $(patsubst %,-I%,$(EXTRAINCDIRS))
71
CFLAGS += $(patsubst %,-I%,$(EXTRAINCDIRS))
72
CFLAGS += $(CSTANDARD)
72
CFLAGS += $(CSTANDARD)
73
 
73
 
74
 
74
 
75
 
75
 
76
# Assembler flags.
76
# Assembler flags.
77
#  -Wa,...:   tell GCC to pass this to the assembler.
77
#  -Wa,...:   tell GCC to pass this to the assembler.
78
#  -ahlms:    create listing
78
#  -ahlms:    create listing
79
#  -gstabs:   have the assembler create line number information; note that
79
#  -gstabs:   have the assembler create line number information; note that
80
#             for use in COFF files, additional information about filenames
80
#             for use in COFF files, additional information about filenames
81
#             and function names needs to be present in the assembler source
81
#             and function names needs to be present in the assembler source
82
#             files -- see avr-libc docs [FIXME: not yet described there]
82
#             files -- see avr-libc docs [FIXME: not yet described there]
83
##ASFLAGS = -Wa,-adhlns=$(<:.S=.lst),-gstabs 
83
##ASFLAGS = -Wa,-adhlns=$(<:.S=.lst),-gstabs 
84
ASFLAGS = -mmcu=$(MCU) -I. -x assembler-with-cpp
84
ASFLAGS = -mmcu=$(MCU) -I. -x assembler-with-cpp
85
ASFLAGS += -Wa,-adhlns=$(<:.S=.lst),-g$(DEBUG)
85
ASFLAGS += -Wa,-adhlns=$(<:.S=.lst),-g$(DEBUG)
86
 
86
 
87
 
87
 
88
#Additional libraries.
88
#Additional libraries.
89
 
89
 
90
# Minimalistic printf version
90
# Minimalistic printf version
91
PRINTF_LIB_MIN = -Wl,-u,vfprintf -lprintf_min
91
PRINTF_LIB_MIN = -Wl,-u,vfprintf -lprintf_min
92
 
92
 
93
# Floating point printf version (requires MATH_LIB = -lm below)
93
# Floating point printf version (requires MATH_LIB = -lm below)
94
PRINTF_LIB_FLOAT = -Wl,-u,vfprintf -lprintf_flt
94
PRINTF_LIB_FLOAT = -Wl,-u,vfprintf -lprintf_flt
95
 
95
 
96
PRINTF_LIB = 
96
PRINTF_LIB = 
97
 
97
 
98
# Minimalistic scanf version
98
# Minimalistic scanf version
99
SCANF_LIB_MIN = -Wl,-u,vfscanf -lscanf_min
99
SCANF_LIB_MIN = -Wl,-u,vfscanf -lscanf_min
100
 
100
 
101
# Floating point + %[ scanf version (requires MATH_LIB = -lm below)
101
# Floating point + %[ scanf version (requires MATH_LIB = -lm below)
102
SCANF_LIB_FLOAT = -Wl,-u,vfscanf -lscanf_flt
102
SCANF_LIB_FLOAT = -Wl,-u,vfscanf -lscanf_flt
103
 
103
 
104
SCANF_LIB = 
104
SCANF_LIB = 
105
 
105
 
106
MATH_LIB = -lm
106
MATH_LIB = -lm
107
 
107
 
108
# External memory options
108
# External memory options
109
 
109
 
110
# 64 KB of external RAM, starting after internal RAM (ATmega128!),
110
# 64 KB of external RAM, starting after internal RAM (ATmega128!),
111
# used for variables (.data/.bss) and heap (malloc()).
111
# used for variables (.data/.bss) and heap (malloc()).
112
#EXTMEMOPTS = -Wl,-Tdata=0x801100,--defsym=__heap_end=0x80ffff
112
#EXTMEMOPTS = -Wl,-Tdata=0x801100,--defsym=__heap_end=0x80ffff
113
 
113
 
114
# 64 KB of external RAM, starting after internal RAM (ATmega128!),
114
# 64 KB of external RAM, starting after internal RAM (ATmega128!),
115
# only used for heap (malloc()).
115
# only used for heap (malloc()).
116
#EXTMEMOPTS = -Wl,--defsym=__heap_start=0x801100,--defsym=__heap_end=0x80ffff
116
#EXTMEMOPTS = -Wl,--defsym=__heap_start=0x801100,--defsym=__heap_end=0x80ffff
117
 
117
 
118
EXTMEMOPTS =
118
EXTMEMOPTS =
119
 
119
 
120
BIOSOPTS = -Wl,-L.,-Tdata,$(BIOS_RAM_END) -lbios
120
BIOSOPTS = -Wl,-L.,-Tdata,$(BIOS_RAM_END) -lbios
121
 
121
 
122
# Linker flags.
122
# Linker flags.
123
#  -Wl,...:     tell GCC to pass this to linker.
123
#  -Wl,...:     tell GCC to pass this to linker.
124
#    -Map:      create map file
124
#    -Map:      create map file
125
#    --cref:    add cross reference to  map file
125
#    --cref:    add cross reference to  map file
126
LDFLAGS = -Wl,-Map=$(TARGET).map,--cref
126
LDFLAGS = -Wl,-Map=$(TARGET).map,--cref
127
LDFLAGS += $(EXTMEMOPTS)
127
LDFLAGS += $(EXTMEMOPTS)
128
LDFLAGS += $(BIOSOPTS)
128
LDFLAGS += $(BIOSOPTS)
129
LDFLAGS += $(PRINTF_LIB) $(SCANF_LIB) $(MATH_LIB)
129
LDFLAGS += $(PRINTF_LIB) $(SCANF_LIB) $(MATH_LIB)
130
 
130
 
131
# ---------------------------------------------------------------------------
131
# ---------------------------------------------------------------------------
132
 
132
 
133
# Define directories, if needed.
133
# Define directories, if needed.
134
DIRAVR = c:/progra~1/winavr
134
DIRAVR = c:/progra~1/winavr
135
DIRAVRBIN = $(DIRAVR)/bin
135
DIRAVRBIN = $(DIRAVR)/bin
136
DIRAVRUTILS = $(DIRAVR)/utils/bin
136
DIRAVRUTILS = $(DIRAVR)/utils/bin
137
DIRINC = .
137
DIRINC = .
138
DIRLIB = $(DIRAVR)/avr/lib
138
DIRLIB = $(DIRAVR)/avr/lib
139
 
139
 
140
 
140
 
141
# Define programs and commands.
141
# Define programs and commands.
142
SHELL = sh
142
SHELL = sh
143
CC = avr-gcc
143
CC = avr-gcc
144
AWK = awk
144
AWK = awk
145
OBJCOPY = avr-objcopy
145
OBJCOPY = avr-objcopy
146
OBJDUMP = avr-objdump
146
OBJDUMP = avr-objdump
147
SIZE = avr-size
147
SIZE = avr-size
148
NM = avr-nm
148
NM = avr-nm
149
REMOVE = rm -f
149
REMOVE = rm -f
150
COPY = cp
150
COPY = cp
151
 
151
 
152
 
152
 
153
 
153
 
154
 
154
 
155
# Define Messages
155
# Define Messages
156
# English
156
# English
157
MSG_ERRORS_NONE = Errors: none
157
MSG_ERRORS_NONE = Errors: none
158
MSG_BEGIN = -------- begin --------
158
MSG_BEGIN = -------- begin --------
159
MSG_END = --------  end  --------
159
MSG_END = --------  end  --------
160
MSG_SIZE_BEFORE = Size before: 
160
MSG_SIZE_BEFORE = Size before: 
161
MSG_SIZE_AFTER = Size after:
161
MSG_SIZE_AFTER = Size after:
162
MSG_COFF = Converting to AVR COFF:
162
MSG_COFF = Converting to AVR COFF:
163
MSG_EXTENDED_COFF = Converting to AVR Extended COFF:
163
MSG_EXTENDED_COFF = Converting to AVR Extended COFF:
164
MSG_FLASH = Creating load file for Flash:
164
MSG_FLASH = Creating load file for Flash:
165
MSG_EEPROM = Creating load file for EEPROM:
165
MSG_EEPROM = Creating load file for EEPROM:
166
MSG_EXTENDED_LISTING = Creating Extended Listing:
166
MSG_EXTENDED_LISTING = Creating Extended Listing:
167
MSG_SYMBOL_TABLE = Creating Symbol Table:
167
MSG_SYMBOL_TABLE = Creating Symbol Table:
168
MSG_LINKING = Linking:
168
MSG_LINKING = Linking:
169
MSG_COMPILING = Compiling:
169
MSG_COMPILING = Compiling:
170
MSG_ASSEMBLING = Assembling:
170
MSG_ASSEMBLING = Assembling:
171
MSG_DEPEND = Generating dependencies:
171
MSG_DEPEND = Generating dependencies:
172
MSG_CLEANING = Cleaning project:
172
MSG_CLEANING = Cleaning project:
173
 
173
 
174
 
174
 
175
 
175
 
176
 
176
 
177
# Define all object files.
177
# Define all object files.
178
OBJ = $(CSRC:.c=.o) $(ASRC:.S=.o) 
178
OBJ = $(CSRC:.c=.o) $(ASRC:.S=.o) 
179
 
179
 
180
# Define all listing files.
180
# Define all listing files.
181
LST = $(ASRC:.S=.lst) $(CSRC:.c=.lst)
181
LST = $(ASRC:.S=.lst) $(CSRC:.c=.lst)
182
 
182
 
183
 
183
 
184
# Compiler flags to generate dependency files.
184
# Compiler flags to generate dependency files.
185
### GENDEPFLAGS = -Wp,-M,-MP,-MT,$(*F).o,-MF,.dep/$(@F).d
185
### GENDEPFLAGS = -Wp,-M,-MP,-MT,$(*F).o,-MF,.dep/$(@F).d
186
GENDEPFLAGS = -M -MG -MP -MT "$(<:.c=.o) $@" -MF $@
186
GENDEPFLAGS = -M -MG -MP -MT "$(<:.c=.o) $@" -MF $@
187
 
187
 
188
# Combine all necessary flags and optional flags.
188
# Combine all necessary flags and optional flags.
189
# Add target processor to flags.
189
# Add target processor to flags.
190
#ALL_CFLAGS = -mmcu=$(MCU) -I. $(CFLAGS)
190
#ALL_CFLAGS = -mmcu=$(MCU) -I. $(CFLAGS)
191
#ALL_ASFLAGS = -mmcu=$(MCU) -I. -x assembler-with-cpp $(ASFLAGS)
191
#ALL_ASFLAGS = -mmcu=$(MCU) -I. -x assembler-with-cpp $(ASFLAGS)
192
 
192
 
193
 
193
 
194
 
194
 
195
 
195
 
196
 
196
 
197
# Default target.
197
# Default target.
198
all: begin sizebefore build sizeafter finished end
198
all: begin sizebefore build sizeafter finished end
199
 
199
 
200
build: elf hex eep lss sym
200
build: elf hex eep lss sym
201
 
201
 
202
elf: $(TARGET).elf
202
elf: $(TARGET).elf
203
hex: $(TARGET).hex
203
hex: $(TARGET).hex
204
eep: $(TARGET).eep
204
eep: $(TARGET).eep
205
lss: $(TARGET).lss 
205
lss: $(TARGET).lss 
206
sym: $(TARGET).sym
206
sym: $(TARGET).sym
207
config: config.h
207
config: config.h
208
 
208
 
209
install: 
209
install: hex
210
	$(CANUPLOAD) $(CANULFLAGS) -n $(NODE_ID) -f $(TARGET).hex -r
210
	$(CANUPLOAD) $(CANULFLAGS) -n $(NODE_ID) -f $(TARGET).hex -r
211
 
211
 
212
reset: 
212
reset: 
213
	$(CANUPLOAD) $(CANULFLAGS) -n $(NODE_ID) -r
213
	$(CANUPLOAD) $(CANULFLAGS) -n $(NODE_ID) -r
214
 
214
 
215
start: 
215
start: 
216
	$(CANUPLOAD) $(CANULFLAGS) -n $(NODE_ID) -s
216
	$(CANUPLOAD) $(CANULFLAGS) -n $(NODE_ID) -s
217
 
217
 
218
# Eye candy.
218
# Eye candy.
219
# AVR Studio 3.x does not check make's exit code but relies on
219
# AVR Studio 3.x does not check make's exit code but relies on
220
# the following magic strings to be generated by the compile job.
220
# the following magic strings to be generated by the compile job.
221
begin:
221
begin:
222
	@echo
222
	@echo
223
	@echo $(MSG_BEGIN)
223
	@echo $(MSG_BEGIN)
224
 
224
 
225
finished:
225
finished:
226
	@echo $(MSG_ERRORS_NONE)
226
	@echo $(MSG_ERRORS_NONE)
227
 
227
 
228
end:
228
end:
229
	@echo $(MSG_END)
229
	@echo $(MSG_END)
230
	@echo
230
	@echo
231
 
231
 
232
 
232
 
233
# Display size of file.
233
# Display size of file.
234
HEXSIZE = $(SIZE) --target=ihex $(TARGET).hex
234
HEXSIZE = $(SIZE) --target=ihex $(TARGET).hex
235
ELFSIZE = $(SIZE) $(TARGET).elf
235
ELFSIZE = $(SIZE) $(TARGET).elf
236
sizebefore:
236
sizebefore:
237
	@if [ -f $(TARGET).elf ]; then echo; echo $(MSG_SIZE_BEFORE); $(ELFSIZE); echo; fi
237
	@if [ -f $(TARGET).elf ]; then echo; echo $(MSG_SIZE_BEFORE); $(ELFSIZE); echo; fi
238
 
238
 
239
sizeafter:
239
sizeafter:
240
	@if [ -f $(TARGET).elf ]; then echo; echo $(MSG_SIZE_AFTER); $(ELFSIZE); echo; fi
240
	@if [ -f $(TARGET).elf ]; then echo; echo $(MSG_SIZE_AFTER); $(ELFSIZE); echo; fi
241
 
241
 
242
 
242
 
243
# Generate config.h from bios.inc and config.inc
243
# Generate config.h from bios.inc and config.inc
244
config.h: bios.inc config.inc
244
config.h: bios.inc config.inc
245
	@echo Generating $@
245
	@echo Generating $@
246
	@echo "/* This file is automatically generated. Do not edit. */\n" > $@
246
	@echo "/* This file is automatically generated. Do not edit. */\n" > $@
247
	@cat $^ | $(AWK) 'BEGIN { FS="="; print "#ifndef CONFIG_H_\n#define CONFIG_H_\n" } /^[^#].*=.*/ { print "#define "$$1,$$2 } END { print "\n#endif /*CONFIG_H_*/" }' >> $@
247
	@cat $^ | $(AWK) 'BEGIN { FS="="; print "#ifndef CONFIG_H_\n#define CONFIG_H_\n" } /^[^#].*=.*/ { print "#define "$$1,$$2 } END { print "\n#endif /*CONFIG_H_*/" }' >> $@
248
 
248
 
249
# Display compiler version information.
249
# Display compiler version information.
250
gccversion : 
250
gccversion : 
251
	@$(CC) --version
251
	@$(CC) --version
252
 
252
 
253
# Convert ELF to COFF for use in debugging / simulating in AVR Studio or VMLAB.
253
# Convert ELF to COFF for use in debugging / simulating in AVR Studio or VMLAB.
254
COFFCONVERT=$(OBJCOPY) --debugging \
254
COFFCONVERT=$(OBJCOPY) --debugging \
255
--change-section-address .data-0x800000 \
255
--change-section-address .data-0x800000 \
256
--change-section-address .bss-0x800000 \
256
--change-section-address .bss-0x800000 \
257
--change-section-address .noinit-0x800000 \
257
--change-section-address .noinit-0x800000 \
258
--change-section-address .eeprom-0x810000 
258
--change-section-address .eeprom-0x810000 
259
 
259
 
260
 
260
 
261
coff: $(TARGET).elf
261
coff: $(TARGET).elf
262
	@echo
262
	@echo
263
	@echo $(MSG_COFF) $(TARGET).cof
263
	@echo $(MSG_COFF) $(TARGET).cof
264
	$(COFFCONVERT) -O coff-avr $< $(TARGET).cof
264
	$(COFFCONVERT) -O coff-avr $< $(TARGET).cof
265
 
265
 
266
 
266
 
267
extcoff: $(TARGET).elf
267
extcoff: $(TARGET).elf
268
	@echo
268
	@echo
269
	@echo $(MSG_EXTENDED_COFF) $(TARGET).cof
269
	@echo $(MSG_EXTENDED_COFF) $(TARGET).cof
270
	$(COFFCONVERT) -O coff-ext-avr $< $(TARGET).cof
270
	$(COFFCONVERT) -O coff-ext-avr $< $(TARGET).cof
271
 
271
 
272
 
272
 
273
 
273
 
274
# Create final output files (.hex, .eep) from ELF output file.
274
# Create final output files (.hex, .eep) from ELF output file.
275
%.hex: %.elf
275
%.hex: %.elf
276
	@echo
276
	@echo
277
	@echo $(MSG_FLASH) $@
277
	@echo $(MSG_FLASH) $@
278
	$(OBJCOPY) -j .text -j .data -O ihex $< $@
278
	$(OBJCOPY) -j .text -j .data -O ihex $< $@
279
 
279
 
280
%.eep: %.elf
280
%.eep: %.elf
281
	@echo
281
	@echo
282
	@echo $(MSG_EEPROM) $@
282
	@echo $(MSG_EEPROM) $@
283
	-$(OBJCOPY) -j .eeprom --set-section-flags=.eeprom="alloc,load" \
283
	-$(OBJCOPY) -j .eeprom --set-section-flags=.eeprom="alloc,load" \
284
	--change-section-lma .eeprom=0 -O ihex $< $@
284
	--change-section-lma .eeprom=0 -O ihex $< $@
285
 
285
 
286
# Create extended listing file from ELF output file.
286
# Create extended listing file from ELF output file.
287
%.lss: %.elf
287
%.lss: %.elf
288
	@echo
288
	@echo
289
	@echo $(MSG_EXTENDED_LISTING) $@
289
	@echo $(MSG_EXTENDED_LISTING) $@
290
	$(OBJDUMP) -h -S $< > $@
290
	$(OBJDUMP) -h -S $< > $@
291
 
291
 
292
# Create a symbol table from ELF output file.
292
# Create a symbol table from ELF output file.
293
%.sym: %.elf
293
%.sym: %.elf
294
	@echo
294
	@echo
295
	@echo $(MSG_SYMBOL_TABLE) $@
295
	@echo $(MSG_SYMBOL_TABLE) $@
296
	$(NM) -n $< > $@
296
	$(NM) -n $< > $@
297
 
297
 
298
 
298
 
299
 
299
 
300
# Link: create ELF output file from object files.
300
# Link: create ELF output file from object files.
301
.SECONDARY : $(TARGET).elf
301
.SECONDARY : $(TARGET).elf
302
.PRECIOUS : $(OBJ)
302
.PRECIOUS : $(OBJ)
303
ifneq (,$(filter atmega88 atmega168, $(MCU)))
303
ifneq (,$(filter atmega88 atmega168, $(MCU)))
304
%.elf: $(OBJ)
304
%.elf: $(OBJ)
305
	@echo
305
	@echo
306
	@echo $(MSG_LINKING) $@
306
	@echo $(MSG_LINKING) $@
307
	@echo GCC bug workaround for ATmega88/ATmega168:
307
	@echo GCC bug workaround for ATmega88/ATmega168:
308
	eval $$($(CC) -v $(CFLAGS) -o $@ $^ $(LDFLAGS) 2>&1 | $(AWK) '{ if (gsub("0x800100","$(BIOS_RAM_END)") == 1) print }')
308
	eval $$($(CC) -v $(CFLAGS) -o $@ $^ $(LDFLAGS) 2>&1 | $(AWK) '{ if (gsub("0x800100","$(BIOS_RAM_END)") == 1) print }')
309
else
309
else
310
%.elf: $(OBJ)
310
%.elf: $(OBJ)
311
	@echo
311
	@echo
312
	@echo $(MSG_LINKING) $@
312
	@echo $(MSG_LINKING) $@
313
	$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
313
	$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
314
endif
314
endif
315
 
315
 
316
# Compile: create object files from C source files.
316
# Compile: create object files from C source files.
317
%.o : %.c
317
%.o : %.c
318
	@echo
318
	@echo
319
	@echo $(MSG_COMPILING) $<
319
	@echo $(MSG_COMPILING) $<
320
	$(CC) -c $(CFLAGS) $< -o $@ 
320
	$(CC) -c $(CFLAGS) $< -o $@ 
321
 
321
 
322
 
322
 
323
# Compile: create assembler files from C source files.
323
# Compile: create assembler files from C source files.
324
%.s : %.c
324
%.s : %.c
325
	$(CC) -S $(CFLAGS) $< -o $@
325
	$(CC) -S $(CFLAGS) $< -o $@
326
 
326
 
327
 
327
 
328
# Assemble: create object files from assembler source files.
328
# Assemble: create object files from assembler source files.
329
%.o : %.S
329
%.o : %.S
330
	@echo
330
	@echo
331
	@echo $(MSG_ASSEMBLING) $<
331
	@echo $(MSG_ASSEMBLING) $<
332
	$(CC) -c $(ASFLAGS) $< -o $@
332
	$(CC) -c $(ASFLAGS) $< -o $@
333
 
333
 
334
# Depends: create dependency files from c source files.
334
# Depends: create dependency files from c source files.
335
%.d : %.c
335
%.d : %.c
336
	@echo $(MSG_DEPEND) $<
336
	@echo $(MSG_DEPEND) $<
337
	@$(CC) -c $(CFLAGS) $(GENDEPFLAGS) $<
337
	@$(CC) -c $(CFLAGS) $(GENDEPFLAGS) $<
338
 
338
 
339
# Target: clean project.
339
# Target: clean project.
340
clean: begin clean_list finished end
340
clean: begin clean_list finished end
341
 
341
 
342
clean_list :
342
clean_list :
343
	@echo
343
	@echo
344
	@echo $(MSG_CLEANING)
344
	@echo $(MSG_CLEANING)
345
	$(REMOVE) $(TARGET).hex
345
	$(REMOVE) $(TARGET).hex
346
	$(REMOVE) $(TARGET).eep
346
	$(REMOVE) $(TARGET).eep
347
	$(REMOVE) $(TARGET).obj
347
	$(REMOVE) $(TARGET).obj
348
	$(REMOVE) $(TARGET).cof
348
	$(REMOVE) $(TARGET).cof
349
	$(REMOVE) $(TARGET).elf
349
	$(REMOVE) $(TARGET).elf
350
	$(REMOVE) $(TARGET).map
350
	$(REMOVE) $(TARGET).map
351
	$(REMOVE) $(TARGET).obj
351
	$(REMOVE) $(TARGET).obj
352
	$(REMOVE) $(TARGET).a90
352
	$(REMOVE) $(TARGET).a90
353
	$(REMOVE) $(TARGET).sym
353
	$(REMOVE) $(TARGET).sym
354
	$(REMOVE) $(TARGET).lnk
354
	$(REMOVE) $(TARGET).lnk
355
	$(REMOVE) $(TARGET).lss
355
	$(REMOVE) $(TARGET).lss
356
	$(REMOVE) $(OBJ)
356
	$(REMOVE) $(OBJ)
357
	$(REMOVE) $(LST)
357
	$(REMOVE) $(LST)
358
	$(REMOVE) $(CSRC:.c=.s)
358
	$(REMOVE) $(CSRC:.c=.s)
359
	$(REMOVE) $(CSRC:.c=.d)
359
	$(REMOVE) $(CSRC:.c=.d)
360
	$(REMOVE) -r .dep
360
	$(REMOVE) -r .dep
361
	$(REMOVE) config.h
361
	$(REMOVE) config.h
362
 
362
 
363
 
363
 
364
 
364
 
365
# Include the dependency files.
365
# Include the dependency files.
366
-include $(CSRC:%.c=%.d)
366
-include $(CSRC:%.c=%.d)
367
 
367
 
368
 
368
 
369
# Listing of phony targets.
369
# Listing of phony targets.
370
.PHONY : all begin finish end sizebefore sizeafter gccversion \
370
.PHONY : all begin finish end sizebefore sizeafter gccversion \
371
build elf hex eep lss sym config coff extcoff \
371
build elf hex eep lss sym config coff extcoff \
372
clean clean_list program programlock programinit
372
clean clean_list program programlock programinit
373
 
373