Subversion Repositories HomeAutomation

Rev

Go to most recent revision | Details | Last modification | View Log | SVN | RSS feed

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