Rev 2157 | Rev 2164 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1612 | dongfang | 1 | #-------------------------------------------------------------------- |
2 | # MCU name |
||
2160 | - | 3 | MCU = atmega644 |
1612 | dongfang | 4 | F_CPU = 20000000 |
5 | #------------------------------------------------------------------- |
||
6 | VERSION_MAJOR = 0 |
||
1967 | - | 7 | VERSION_MINOR = 1 |
8 | VERSION_PATCH = 0 |
||
1612 | dongfang | 9 | |
10 | VERSION_SERIAL_MAJOR = 10 # Serial Protocol Major Version |
||
2033 | - | 11 | VERSION_SERIAL_MINOR = 1 # Serial Protocol Minor Version |
12 | NC_SPI_COMPATIBLE = 6 # SPI Protocol Version |
||
1612 | dongfang | 13 | |
14 | #------------------------------------------------------------------- |
||
15 | #OPTIONS |
||
16 | |||
17 | # Use one of the extensions for a gps solution |
||
1801 | - | 18 | #EXT = NAVICTRL |
2160 | - | 19 | #EXT = DIRECT_GPS |
2053 | - | 20 | #EXT = MK3MAG |
2160 | - | 21 | EXT = |
1612 | dongfang | 22 | |
2160 | - | 23 | GYRO=ENC-03_FC1.3 |
24 | GYRO_HW_NAME=ENC |
||
25 | GYRO_HW_FACTOR=1.304f |
||
2157 | - | 26 | GYRO_PITCHROLL_CORRECTION=1.0f |
27 | GYRO_YAW_CORRECTION=1.0f |
||
2048 | - | 28 | |
2160 | - | 29 | #GYRO=ADXRS610_FC2.0 |
30 | #GYRO_HW_NAME=ADXR |
||
31 | #GYRO_HW_FACTOR=1.2288f |
||
32 | #GYRO_PITCHROLL_CORRECTION=1.0f |
||
33 | #GYRO_YAW_CORRECTION=1.0f |
||
34 | |||
2019 | - | 35 | #GYRO=invenSense |
36 | #GYRO_HW_NAME=Isense |
||
37 | #GYRO_HW_FACTOR=0.6827f |
||
38 | #GYRO_PITCHROLL_CORRECTION=1.0f |
||
39 | #GYRO_YAW_CORRECTION=1.0f |
||
1775 | - | 40 | |
1612 | dongfang | 41 | #------------------------------------------------------------------- |
42 | # get SVN revision |
||
43 | REV=0001 |
||
44 | #$(shell sh -c "cat .svn/entries | sed -n '4p'") |
||
45 | |||
46 | ifeq ($(MCU), atmega644) |
||
47 | FUSE_SETTINGS = -u -U lfuse:w:0xff:m -U hfuse:w:0xdf:m |
||
2039 | - | 48 | HEX_NAME = MEGA644_$(EXT)_$(GYRO) |
1612 | dongfang | 49 | endif |
50 | |||
51 | ifeq ($(MCU), atmega644p) |
||
52 | FUSE_SETTINGS = -u -U lfuse:w:0xff:m -U hfuse:w:0xdf:m |
||
2039 | - | 53 | HEX_NAME = MEGA644p_$(EXT)_$(GYRO) |
1612 | dongfang | 54 | endif |
55 | |||
56 | |||
57 | ifeq ($(F_CPU), 20000000) |
||
58 | QUARZ = 20MHZ |
||
59 | endif |
||
60 | |||
61 | |||
62 | # Output format. (can be srec, ihex, binary) |
||
63 | FORMAT = ihex |
||
64 | |||
65 | # Target file name (without extension). |
||
66 | |||
67 | ifeq ($(VERSION_PATCH), 0) |
||
68 | TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)a_SVN$(REV) |
||
69 | endif |
||
70 | ifeq ($(VERSION_PATCH), 1) |
||
71 | TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)b_SVN$(REV) |
||
72 | endif |
||
73 | ifeq ($(VERSION_PATCH), 2) |
||
74 | TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)c_SVN$(REV) |
||
75 | endif |
||
76 | ifeq ($(VERSION_PATCH), 3) |
||
77 | TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)d_SVN$(REV) |
||
78 | endif |
||
79 | ifeq ($(VERSION_PATCH), 4) |
||
80 | TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)e_SVN$(REV) |
||
81 | endif |
||
82 | ifeq ($(VERSION_PATCH), 5) |
||
83 | TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)f_SVN$(REV) |
||
84 | endif |
||
85 | ifeq ($(VERSION_PATCH), 6) |
||
86 | TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)g_SVN$(REV) |
||
87 | endif |
||
88 | ifeq ($(VERSION_PATCH), 7) |
||
89 | TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)h_SVN$(REV) |
||
90 | endif |
||
91 | ifeq ($(VERSION_PATCH), 8) |
||
92 | TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)i_SVN$(REV) |
||
93 | endif |
||
94 | ifeq ($(VERSION_PATCH), 9) |
||
95 | TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)j_SVN$(REV) |
||
96 | endif |
||
97 | ifeq ($(VERSION_PATCH), 10) |
||
98 | TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)k_SVN$(REV) |
||
99 | endif |
||
100 | ifeq ($(VERSION_PATCH), 11) |
||
101 | TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)l_SVN$(REV) |
||
102 | endif |
||
103 | ifeq ($(VERSION_PATCH), 12) |
||
104 | TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)m_SVN$(REV) |
||
105 | endif |
||
106 | ifeq ($(VERSION_PATCH), 13) |
||
107 | TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)n_SVN$(REV) |
||
108 | endif |
||
109 | ifeq ($(VERSION_PATCH), 14) |
||
110 | TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)o_SVN$(REV) |
||
111 | endif |
||
112 | ifeq ($(VERSION_PATCH), 15) |
||
113 | TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)p_SVN$(REV) |
||
114 | endif |
||
115 | ifeq ($(VERSION_PATCH), 16) |
||
116 | TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)q_SVN$(REV) |
||
117 | endif |
||
118 | ifeq ($(VERSION_PATCH), 17) |
||
119 | TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)r_SVN$(REV) |
||
120 | endif |
||
1775 | - | 121 | ifeq ($(VERSION_PATCH), 100) |
122 | TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)df_SVN$(REV) |
||
123 | endif |
||
1612 | dongfang | 124 | |
125 | # Optimization level, can be [0, 1, 2, 3, s]. 0 turns off optimization. |
||
126 | # (Note: 3 is not always the best optimization level. See avr-libc FAQ.) |
||
127 | OPT = 2 |
||
128 | #OPT = s |
||
129 | |||
130 | ########################################################################################################## |
||
131 | # List C source files here. (C dependencies are automatically generated.) |
||
2055 | - | 132 | SRC = main.c uart0.c printf_P.c timer0.c timer2.c analog.c menu.c output.c controlMixer.c failsafeControl.c |
2048 | - | 133 | SRC += externalControl.c compassControl.c dongfangMath.c twimaster.c rc.c attitude.c flight.c |
2039 | - | 134 | SRC += eeprom.c heightControl.c configuration.c attitudeControl.c commands.c $(GYRO).c |
1612 | dongfang | 135 | |
2039 | - | 136 | ifeq ($(EXT), DIRECT_GPS) |
137 | SRC += mk3mag.c directGPSNaviControl.c uart1.c ubx.c |
||
1612 | dongfang | 138 | endif |
2039 | - | 139 | |
2052 | - | 140 | ifeq ($(EXT), MK3MAG) |
141 | SRC += mk3mag.c |
||
142 | endif |
||
143 | |||
1612 | dongfang | 144 | ifeq ($(EXT), NAVICTRL) |
145 | SRC += spi.c |
||
146 | endif |
||
147 | ########################################################################################################## |
||
148 | |||
149 | # List Assembler source files here. |
||
150 | # Make them always end in a capital .S. Files ending in a lowercase .s |
||
151 | # will not be considered source files but generated files (assembler |
||
152 | # output from the compiler), and will be deleted upon "make clean"! |
||
153 | # Even though the DOS/Win* filesystem matches both .s and .S the same, |
||
154 | # it will preserve the spelling of the filenames, and gcc itself does |
||
155 | # care about how the name is spelled on its command-line. |
||
2039 | - | 156 | ASRC = isqrt.S |
1612 | dongfang | 157 | |
158 | # List any extra directories to look for include files here. |
||
159 | # Each directory must be seperated by a space. |
||
160 | EXTRAINCDIRS = |
||
161 | |||
162 | |||
163 | # Optional compiler flags. |
||
164 | # -g: generate debugging information (for GDB, or for COFF conversion) |
||
165 | # -O*: optimization level |
||
166 | # -f...: tuning, see gcc manual and avr-libc documentation |
||
167 | # -Wall...: warning level |
||
168 | # -Wa,...: tell GCC to pass this to the assembler. |
||
169 | # -ahlms: create assembler listing |
||
170 | CFLAGS = -O$(OPT) \ |
||
171 | -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums \ |
||
172 | -Wall -Wstrict-prototypes \ |
||
173 | -DGYRO=$(GYRO) \ |
||
174 | -Wa,-adhlns=$(<:.c=.lst) \ |
||
175 | $(patsubst %,-I%,$(EXTRAINCDIRS)) |
||
176 | |||
177 | |||
178 | # Set a "language standard" compiler flag. |
||
179 | # Unremark just one line below to set the language standard to use. |
||
180 | # gnu99 = C99 + GNU extensions. See GCC manual for more information. |
||
181 | #CFLAGS += -std=c89 |
||
182 | #CFLAGS += -std=gnu89 |
||
183 | #CFLAGS += -std=c99 |
||
184 | CFLAGS += -std=gnu99 |
||
185 | |||
1775 | - | 186 | CFLAGS += -DF_CPU=$(F_CPU) -DVERSION_MAJOR=$(VERSION_MAJOR) -DVERSION_MINOR=$(VERSION_MINOR) -DVERSION_PATCH=$(VERSION_PATCH) -DVERSION_SERIAL_MAJOR=$(VERSION_SERIAL_MAJOR) -DVERSION_SERIAL_MINOR=$(VERSION_SERIAL_MINOR) -DNC_SPI_COMPATIBLE=$(NC_SPI_COMPATIBLE) -DGYRO_HW_NAME=${GYRO_HW_NAME} -DGYRO_HW_FACTOR=${GYRO_HW_FACTOR} -DGYRO_PITCHROLL_CORRECTION=${GYRO_PITCHROLL_CORRECTION} -DGYRO_YAW_CORRECTION=${GYRO_YAW_CORRECTION} |
1612 | dongfang | 187 | |
2039 | - | 188 | ifeq ($(EXT), DIRECT_GPS) |
189 | CFLAGS += -DUSE_DIRECT_GPS |
||
2052 | - | 190 | CFLAGS += -DUSE_MK3MAG |
1612 | dongfang | 191 | endif |
2052 | - | 192 | |
193 | ifeq ($(EXT), MK3MAG) |
||
194 | CFLAGS += -DUSE_MK3MAG |
||
195 | endif |
||
196 | |||
1612 | dongfang | 197 | ifeq ($(EXT), NAVICTRL) |
198 | CFLAGS += -DUSE_NAVICTRL |
||
199 | endif |
||
200 | |||
201 | ifeq ($(SETUP), QUADRO) |
||
202 | CFLAGS += -DUSE_QUADRO |
||
203 | endif |
||
204 | ifeq ($(SETUP), OCTO) |
||
205 | CFLAGS += -DUSE_OCTO |
||
206 | endif |
||
207 | ifeq ($(SETUP), OCTO2) |
||
208 | CFLAGS += -DUSE_OCTO2 |
||
209 | endif |
||
210 | ifeq ($(SETUP), OCTO3) |
||
211 | CFLAGS += -DUSE_OCTO3 |
||
212 | endif |
||
213 | |||
214 | |||
215 | # Optional assembler flags. |
||
216 | # -Wa,...: tell GCC to pass this to the assembler. |
||
217 | # -ahlms: create listing |
||
218 | # -gstabs: have the assembler create line number information; note that |
||
219 | # for use in COFF files, additional information about filenames |
||
220 | # and function names needs to be present in the assembler source |
||
221 | # files -- see avr-libc docs [FIXME: not yet described there] |
||
222 | ASFLAGS = -Wa,-adhlns=$(<:.S=.lst),-gstabs |
||
223 | |||
224 | |||
225 | |||
226 | # Optional linker flags. |
||
227 | # -Wl,...: tell GCC to pass this to linker. |
||
228 | # -Map: create map file |
||
229 | # --cref: add cross reference to map file |
||
230 | LDFLAGS = -Wl,-Map=$(TARGET).map,--cref |
||
231 | |||
232 | # Additional libraries |
||
233 | |||
234 | # Minimalistic printf version |
||
235 | #LDFLAGS += -Wl,-u,vfprintf -lprintf_min |
||
236 | |||
237 | # Floating point printf version (requires -lm below) |
||
238 | #LDFLAGS += -Wl,-u,vfprintf -lprintf_flt |
||
239 | |||
240 | # -lm = math library |
||
241 | LDFLAGS += -lm |
||
242 | |||
243 | |||
244 | ##LDFLAGS += -T./linkerfile/avr5.x |
||
245 | |||
246 | |||
247 | # Programming support using avrdude. Settings and variables. |
||
248 | |||
249 | # Programming hardware: alf avr910 avrisp bascom bsd |
||
250 | # dt006 pavr picoweb pony-stk200 sp12 stk200 stk500 |
||
251 | # |
||
252 | # Type: avrdude -c ? |
||
253 | # to get a full listing. |
||
254 | # |
||
255 | #AVRDUDE_PROGRAMMER = dt006 |
||
256 | #AVRDUDE_PROGRAMMER = stk200 |
||
257 | #AVRDUDE_PROGRAMMER = ponyser |
||
2160 | - | 258 | AVRDUDE_PROGRAMMER = avrispv2 |
259 | #AVRDUDE_PROGRAMMER = usbtiny |
||
1869 | - | 260 | #falls Ponyser ausgewaehlt wird, muss sich unsere avrdude-Configdatei im Bin-Verzeichnis des Compilers befinden |
1612 | dongfang | 261 | |
262 | #AVRDUDE_PORT = com1 # programmer connected to serial device |
||
263 | #AVRDUDE_PORT = lpt1 # programmer connected to parallel port |
||
1955 | - | 264 | AVRDUDE_PORT = usb |
265 | # programmer connected to USB |
||
1612 | dongfang | 266 | |
267 | #AVRDUDE_WRITE_FLASH = -U flash:w:$(TARGET).hex |
||
268 | AVRDUDE_WRITE_FLASH = -U flash:w:$(TARGET).hex $(FUSE_SETTINGS) |
||
269 | #AVRDUDE_WRITE_EEPROM = -U eeprom:w:$(TARGET).eep |
||
2059 | - | 270 | AVRDUDE_READ_EEPROM = -U eeprom:r:eeprom.eep:i |
1612 | dongfang | 271 | |
2045 | - | 272 | # Make a dummy read in order to cycle the reset pin on the MCU. |
273 | AVRDUDE_RESET = -u -U lfuse:r:m |
||
274 | |||
1612 | dongfang | 275 | #avrdude -c avrispv2 -P usb -p m32 -U flash:w:blink.hex |
2089 | - | 276 | AVRDUDE_FLAGS = -p $(MCU) -P $(AVRDUDE_PORT) -c $(AVRDUDE_PROGRAMMER) -B 1 |
1612 | dongfang | 277 | |
278 | # Uncomment the following if you want avrdude's erase cycle counter. |
||
279 | # Note that this counter needs to be initialized first using -Yn, |
||
280 | # see avrdude manual. |
||
281 | #AVRDUDE_ERASE += -y |
||
282 | |||
283 | # Uncomment the following if you do /not/ wish a verification to be |
||
284 | # performed after programming the device. |
||
285 | AVRDUDE_FLAGS += -V |
||
286 | |||
287 | # Increase verbosity level. Please use this when submitting bug |
||
288 | # reports about avrdude. See <http://savannah.nongnu.org/projects/avrdude> |
||
289 | # to submit bug reports. |
||
290 | #AVRDUDE_FLAGS += -v -v |
||
291 | |||
292 | # --------------------------------------------------------------------------- |
||
293 | # Define directories, if needed. |
||
294 | DIRAVR = c:/winavr |
||
295 | DIRAVRBIN = $(DIRAVR)/bin |
||
296 | DIRAVRUTILS = $(DIRAVR)/utils/bin |
||
297 | DIRINC = . |
||
298 | DIRLIB = $(DIRAVR)/avr/lib |
||
299 | |||
300 | |||
301 | # Define programs and commands. |
||
302 | SHELL = sh |
||
303 | |||
304 | CC = avr-gcc |
||
305 | |||
306 | OBJCOPY = avr-objcopy |
||
307 | OBJDUMP = avr-objdump |
||
308 | SIZE = avr-size |
||
309 | |||
310 | # Programming support using avrdude. |
||
311 | AVRDUDE = avrdude |
||
312 | |||
313 | REMOVE = rm -f |
||
314 | COPY = cp |
||
315 | |||
316 | HEXSIZE = $(SIZE) --target=$(FORMAT) $(TARGET).hex |
||
317 | ELFSIZE = $(SIZE) -A $(TARGET).elf |
||
318 | |||
319 | # Define Messages |
||
320 | # English |
||
321 | MSG_ERRORS_NONE = Errors: none |
||
322 | MSG_BEGIN = -------- begin -------- |
||
323 | MSG_END = -------- end -------- |
||
324 | MSG_SIZE_BEFORE = Size before: |
||
325 | MSG_SIZE_AFTER = Size after: |
||
326 | MSG_COFF = Converting to AVR COFF: |
||
327 | MSG_EXTENDED_COFF = Converting to AVR Extended COFF: |
||
328 | MSG_FLASH = Creating load file for Flash: |
||
329 | MSG_EEPROM = Creating load file for EEPROM: |
||
330 | MSG_EXTENDED_LISTING = Creating Extended Listing: |
||
331 | MSG_SYMBOL_TABLE = Creating Symbol Table: |
||
332 | MSG_LINKING = Linking: |
||
333 | MSG_COMPILING = Compiling: |
||
334 | MSG_ASSEMBLING = Assembling: |
||
335 | MSG_CLEANING = Cleaning project: |
||
336 | |||
337 | |||
338 | # Define all object files. |
||
339 | OBJ = $(SRC:.c=.o) $(ASRC:.S=.o) |
||
340 | |||
341 | # Define all listing files. |
||
342 | LST = $(ASRC:.S=.lst) $(SRC:.c=.lst) |
||
343 | |||
344 | # Combine all necessary flags and optional flags. |
||
345 | # Add target processor to flags. |
||
346 | #ALL_CFLAGS = -mmcu=$(MCU) -DF_CPU=$(F_CPU) -I. $(CFLAGS) |
||
347 | ALL_CFLAGS = -mmcu=$(MCU) -I. $(CFLAGS) |
||
348 | ALL_ASFLAGS = -mmcu=$(MCU) -I. -x assembler-with-cpp $(ASFLAGS) |
||
349 | |||
350 | |||
351 | # Default target. |
||
352 | all: begin gccversion sizebefore $(TARGET).elf $(TARGET).hex $(TARGET).eep \ |
||
353 | $(TARGET).lss $(TARGET).sym sizeafter finished end |
||
354 | |||
355 | |||
356 | # Eye candy. |
||
357 | # AVR Studio 3.x does not check make's exit code but relies on |
||
358 | # the following magic strings to be generated by the compile job. |
||
359 | begin: |
||
360 | @echo |
||
361 | @echo $(MSG_BEGIN) |
||
362 | |||
363 | finished: |
||
364 | @echo $(MSG_ERRORS_NONE) |
||
365 | |||
366 | end: |
||
367 | @echo $(MSG_END) |
||
368 | @echo |
||
369 | |||
370 | |||
371 | # Display size of file. |
||
372 | sizebefore: |
||
373 | @if [ -f $(TARGET).elf ]; then echo; echo $(MSG_SIZE_BEFORE); $(ELFSIZE); echo; fi |
||
374 | |||
375 | sizeafter: |
||
376 | @if [ -f $(TARGET).elf ]; then echo; echo $(MSG_SIZE_AFTER); $(ELFSIZE); echo; fi |
||
377 | |||
378 | |||
379 | |||
380 | # Display compiler version information. |
||
381 | gccversion : |
||
382 | @$(CC) --version |
||
383 | |||
384 | |||
385 | # Convert ELF to COFF for use in debugging / simulating in |
||
386 | # AVR Studio or VMLAB. |
||
387 | COFFCONVERT=$(OBJCOPY) --debugging \ |
||
388 | --change-section-address .data-0x800000 \ |
||
389 | --change-section-address .bss-0x800000 \ |
||
390 | --change-section-address .noinit-0x800000 \ |
||
391 | --change-section-address .eeprom-0x810000 |
||
392 | |||
393 | |||
394 | coff: $(TARGET).elf |
||
395 | @echo |
||
396 | @echo $(MSG_COFF) $(TARGET).cof |
||
397 | $(COFFCONVERT) -O coff-avr $< $(TARGET).cof |
||
398 | |||
399 | |||
400 | extcoff: $(TARGET).elf |
||
401 | @echo |
||
402 | @echo $(MSG_EXTENDED_COFF) $(TARGET).cof |
||
403 | $(COFFCONVERT) -O coff-ext-avr $< $(TARGET).cof |
||
404 | |||
405 | # Program the device. |
||
406 | program: $(TARGET).hex $(TARGET).eep |
||
407 | $(AVRDUDE) $(AVRDUDE_FLAGS) $(AVRDUDE_WRITE_FLASH) $(AVRDUDE_WRITE_EEPROM) |
||
408 | |||
2059 | - | 409 | # Program the device. |
410 | readeep: |
||
411 | $(AVRDUDE) $(AVRDUDE_FLAGS) $(AVRDUDE_READ_EEPROM) |
||
412 | |||
2045 | - | 413 | reset: |
414 | $(AVRDUDE) $(AVRDUDE_FLAGS) $(AVRDUDE_RESET) |
||
415 | |||
1612 | dongfang | 416 | # Create final output files (.hex, .eep) from ELF output file. |
417 | %.hex: %.elf |
||
418 | @echo |
||
419 | @echo $(MSG_FLASH) $@ |
||
420 | $(OBJCOPY) -O $(FORMAT) -R .eeprom $< $@ |
||
421 | |||
422 | %.eep: %.elf |
||
423 | @echo |
||
424 | @echo $(MSG_EEPROM) $@ |
||
425 | -$(OBJCOPY) -j .eeprom --set-section-flags=.eeprom="alloc,load" \ |
||
426 | --change-section-lma .eeprom=0 -O $(FORMAT) $< $@ |
||
427 | |||
428 | # Create extended listing file from ELF output file. |
||
429 | %.lss: %.elf |
||
430 | @echo |
||
431 | @echo $(MSG_EXTENDED_LISTING) $@ |
||
432 | $(OBJDUMP) -h -S $< > $@ |
||
433 | |||
434 | # Create a symbol table from ELF output file. |
||
435 | %.sym: %.elf |
||
436 | @echo |
||
437 | @echo $(MSG_SYMBOL_TABLE) $@ |
||
438 | avr-nm -n $< > $@ |
||
439 | |||
440 | |||
441 | |||
442 | # Link: create ELF output file from object files. |
||
443 | .SECONDARY : $(TARGET).elf |
||
444 | .PRECIOUS : $(OBJ) |
||
445 | %.elf: $(OBJ) |
||
446 | @echo |
||
447 | @echo $(MSG_LINKING) $@ |
||
448 | $(CC) $(ALL_CFLAGS) $(OBJ) --output $@ $(LDFLAGS) |
||
449 | |||
450 | |||
451 | # Compile: create object files from C source files. |
||
452 | %.o : %.c |
||
453 | @echo |
||
454 | @echo $(MSG_COMPILING) $< |
||
455 | $(CC) -c $(ALL_CFLAGS) $< -o $@ |
||
456 | |||
457 | |||
458 | # Compile: create assembler files from C source files. |
||
459 | %.s : %.c |
||
460 | $(CC) -S $(ALL_CFLAGS) $< -o $@ |
||
461 | |||
462 | |||
463 | # Assemble: create object files from assembler source files. |
||
464 | %.o : %.S |
||
465 | @echo |
||
466 | @echo $(MSG_ASSEMBLING) $< |
||
467 | $(CC) -c $(ALL_ASFLAGS) $< -o $@ |
||
468 | |||
469 | |||
470 | |||
471 | |||
472 | |||
473 | |||
474 | # Target: clean project. |
||
475 | clean: begin clean_list finished end |
||
476 | |||
477 | clean_list : |
||
478 | @echo |
||
479 | @echo $(MSG_CLEANING) |
||
480 | # $(REMOVE) $(TARGET).hex |
||
481 | $(REMOVE) $(TARGET).eep |
||
482 | $(REMOVE) $(TARGET).obj |
||
483 | $(REMOVE) $(TARGET).cof |
||
484 | $(REMOVE) $(TARGET).elf |
||
485 | $(REMOVE) $(TARGET).map |
||
486 | $(REMOVE) $(TARGET).obj |
||
487 | $(REMOVE) $(TARGET).a90 |
||
488 | $(REMOVE) $(TARGET).sym |
||
489 | $(REMOVE) $(TARGET).lnk |
||
490 | $(REMOVE) $(TARGET).lss |
||
491 | $(REMOVE) $(OBJ) |
||
492 | $(REMOVE) $(LST) |
||
493 | $(REMOVE) $(SRC:.c=.s) |
||
494 | $(REMOVE) $(SRC:.c=.d) |
||
495 | |||
496 | # Automatically generate C source code dependencies. |
||
497 | # (Code originally taken from the GNU make user manual and modified |
||
498 | # (See README.txt Credits).) |
||
499 | # |
||
500 | # Note that this will work with sh (bash) and sed that is shipped with WinAVR |
||
501 | # (see the SHELL variable defined above). |
||
502 | # This may not work with other shells or other seds. |
||
503 | # |
||
504 | %.d: %.c |
||
505 | set -e; $(CC) -MM $(ALL_CFLAGS) $< \ |
||
506 | | sed 's,\(.*\)\.o[ :]*,\1.o \1.d : ,g' > $@; \ |
||
507 | [ -s $@ ] || rm -f $@ |
||
508 | |||
509 | |||
510 | # Remove the '-' if you want to see the dependency files generated. |
||
511 | -include $(SRC:.c=.d) |
||
512 | |||
513 | # Listing of phony targets. |
||
514 | .PHONY : all begin finish end sizebefore sizeafter gccversion coff extcoff \ |
||
515 | clean clean_list program |