introduce new feature: BOOTLOADER_ABORTTIMEOUTONACT
[pub/USBaspLoader.git] / firmware / Makefile
1 # Name: Makefile
2 # Project: USBaspLoader
3 # Author: Christian Starkjohann
4 # Creation Date: 2007-12-10
5 # Author: Stephan Bärwolf
6 # Improvement Date: 2012-07-31
7 # Tabsize: 4
8 # Copyright: (c) 2007 by OBJECTIVE DEVELOPMENT Software GmbH
9 # License: GNU GPL v2 (see License.txt)
10
11 ###############################################################################
12 # Configure the following variables according to your AVR.
13 # Program the device with
14 # make fuse # to set the clock generator, boot section size etc.
15 # make flash # to load the boot loader into flash
16 # make lock # to protect the boot loader from overwriting
17
18 include ../Makefile.inc
19
20 # Remove the -fno-* options when you use gcc 3, it does not understand them
21 CFLAGS = -Wall -Os -g3 -ggdb -fno-move-loop-invariants -fno-tree-scev-cprop -fno-inline-small-functions -I. -mmcu=$(DEVICE) -DBOOTLOADER_ADDRESS=$(BOOTLOADER_ADDRESS) -DF_CPU=$(F_CPU) $(DEFINES)
22 LDFLAGS = -Wl,--relax,--gc-sections -Wl,--section-start=.text=$(BOOTLOADER_ADDRESS) -Wl,--defsym=nullVector=0
23
24 OBJECTS = usbdrv/usbdrvasm.o usbdrv/oddebug.o main.o
25
26 # symbolic targets:
27 all: main.hex
28
29 .c.o:
30 $(CC) $(CFLAGS) -c $< -o $@
31
32 .S.o:
33 $(CC) $(CFLAGS) -x assembler-with-cpp -c $< -o $@
34 # "-x assembler-with-cpp" should not be necessary since this is the default
35 # file type for the .S (with capital S) extension. However, upper case
36 # characters are not always preserved on Windows. To ensure WinAVR
37 # compatibility define the file type manually.
38
39 .c.s:
40 $(CC) $(CFLAGS) -S $< -o $@
41
42 flash: all
43 $(ECHO) "."
44 $(AVRDUDE) -U flash:w:main.hex:i
45 $(ECHO) "."
46 $(ECHO) "."
47
48 readflash:
49 $(ECHO) "."
50 $(AVRDUDE) -U flash:r:read.hex:i
51 $(ECHO) "."
52 $(ECHO) "."
53
54
55 fuse:
56 $(ECHO) "."
57 $(AVRDUDE) $(FUSEOPT)
58 $(ECHO) "."
59 $(ECHO) "."
60
61
62 lock:
63 $(ECHO) "."
64 $(AVRDUDE) $(LOCKOPT)
65 $(ECHO) "."
66 $(ECHO) "."
67
68
69 read_fuses:
70 $(UISP) --rd_fuses
71
72 deepclean: clean
73 $(RM) *~
74
75 clean:
76 $(RM) main.hex
77 $(RM) main.asm
78 $(RM) main.map
79 $(RM) main.elf
80 $(RM) main.o
81 $(RM) main.s
82 $(RM) usbdrv/usbdrvasm.o
83 $(RM) usbdrv/oddebug.o
84 $(RM) usbdrv/oddebug.s
85 $(RM) usbdrv/usbdrv.s
86
87 # file targets:
88 main.elf: $(OBJECTS) bootloaderconfig.h
89 $(CC) $(CFLAGS) -o main.elf $(OBJECTS) -Wl,-Map,main.map $(LDFLAGS)
90
91 main.asm: main.elf
92 $(OBD) -Stdr main.elf > main.asm
93
94 main.hex: main.elf main.asm
95 $(RM) main.hex main.eep.hex
96 $(OBC) -j .text -j .data -O ihex main.elf main.hex
97 $(ECHO) "."
98 $(ECHO) "."
99 $(ECHO) "."
100 $(ECHO) "!!!ATTANTION!!!"
101 $(ECHO) "(data+text) MUST fit into your MCUs bootloader section"
102 $(ECHO) "."
103 $(SIZ) --mcu $(DEVICE) main.elf
104 $(ECHO) "."
105 $(ECHO) "."
106 $(ECHO) "."
107
108 disasm: main.elf
109 $(OBD) -d main.elf
110
111 cpp:
112 $(CC) $(CFLAGS) -E main.c