Rev 543 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed
| Rev 543 | Rev 563 | ||
|---|---|---|---|
| Line 1... | Line 1... | ||
| 1 |
|
1 | # Paths: default pathnames if they are not |
| 2 | - | ||
| 3 | # |
2 | # passed on from parent Makefile. |
| - | 3 | ifndef TARGET |
|
| 4 | TARGET = main |
4 | TARGET = main |
| 5 | 5 | endif |
|
| - | 6 | ifndef LIBDIR |
|
| 6 | LIBDIR = ../../avr-lib |
7 | LIBDIR = ../../../avr-lib |
| - | 8 | endif |
|
| - | 9 | ifndef SRCDIR |
|
| - | 10 | SRCDIR = ../src |
|
| - | 11 | endif |
|
| - | 12 | ifndef BIOSDIR |
|
| - | 13 | BIOSDIR = ../bios |
|
| - | 14 | endif |
|
| - | 15 | ifndef CFGDIR |
|
| - | 16 | CFGDIR = .. |
|
| - | 17 | endif |
|
| - | 18 | ||
| 7 | include $( |
19 | include $(CFGDIR)/bios.inc |
| - | 20 | ||
| - | 21 | # VPATH: setup search path for source files. |
|
| - | 22 | vpath |
|
| - | 23 | vpath %.c $(LIBDIR):$(SRCDIR) |
|
| 8 | 24 | ||
| 9 | # List |
25 | # List source files here. (C dependencies are automatically generated.) |
| 10 |
|
26 | SOURCES = main.c\ |
| 11 |
|
27 | drivers/timer/timebase.c\ |
| 12 |
|
28 | drivers/mcu/mcu.c\ |
| 13 |
|
29 | drivers/ir/transmitter/irtransmitter.c\ |
| 14 |
|
30 | drivers/ir/ircommon.c\ |
| 15 | - | ||
| 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 = |
- | |
| 24 | - | ||
| 25 | 31 | ||
| 26 | # Optimization level, can be [0, 1, 2, 3, s]. |
32 | # Optimization level, can be [0, 1, 2, 3, s]. |
| 27 | # 0 = turn off optimization. s = optimize for size. |
33 | # 0 = turn off optimization. s = optimize for size. |
| 28 | # (Note: 3 is not always the best optimization level. See avr-libc FAQ.) |
34 | # (Note: 3 is not always the best optimization level. See avr-libc FAQ.) |
| 29 | OPT = s |
35 | OPT = s |
| 30 | #OPT = 3 |
36 | #OPT = 3 |
| Line 34... | Line 40... | ||
| 34 | # AVR (extended) COFF requires stabs, plus an avr-objcopy run. |
40 | # AVR (extended) COFF requires stabs, plus an avr-objcopy run. |
| 35 | DEBUG = stabs |
41 | DEBUG = stabs |
| 36 | #DEBUG = dwarf-2 |
42 | #DEBUG = dwarf-2 |
| 37 | 43 | ||
| 38 | # List any extra directories to look for include files here. |
44 | # List any extra directories to look for include files here. |
| 39 | # Each directory must be |
45 | # Each directory must be separated by a space. |
| 40 | EXTRAINCDIRS = $(LIBDIR) |
46 | EXTRAINCDIRS = $(LIBDIR) $(BIOSDIR) |
| 41 | 47 | ||
| 42 | # Compiler flag to set the C Standard level. |
48 | # Compiler flag to set the C Standard level. |
| 43 | # c89 - "ANSI" C |
49 | # c89 - "ANSI" C |
| 44 | # gnu89 - c89 plus GCC extensions |
50 | # gnu89 - c89 plus GCC extensions |
| 45 | # c99 - ISO C99 standard (not yet fully implemented) |
51 | # c99 - ISO C99 standard (not yet fully implemented) |
| 46 | # gnu99 - c99 plus GCC extensions |
52 | # gnu99 - c99 plus GCC extensions |
| 47 | CSTANDARD = -std=gnu99 |
53 | CSTANDARD = -std=gnu99 |
| 48 | 54 | ||
| 49 | # Place -D or -U options here |
55 | # Place -D or -U options here |
| 50 | CDEFS = |
56 | CDEFS = |
| 51 | 57 | ||
| 52 | # Place -I options here |
58 | # Place -I options here |
| 53 | CINCS = |
59 | CINCS = |
| Line 64... | Line 70... | ||
| 64 | CFLAGS += -g$(DEBUG) |
70 | CFLAGS += -g$(DEBUG) |
| 65 | CFLAGS += $(CDEFS) $(CINCS) |
71 | CFLAGS += $(CDEFS) $(CINCS) |
| 66 | CFLAGS += -O$(OPT) |
72 | CFLAGS += -O$(OPT) |
| 67 | CFLAGS += -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums |
73 | CFLAGS += -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums |
| 68 | CFLAGS += -Wall -Wstrict-prototypes |
74 | CFLAGS += -Wall -Wstrict-prototypes |
| 69 | CFLAGS += -Wa,-adhlns=$( |
75 | CFLAGS += -Wa,-adhlns=$(@:.o=.lst) |
| 70 | CFLAGS += $(patsubst %,-I%,$(EXTRAINCDIRS)) |
76 | CFLAGS += $(patsubst %,-I%,$(EXTRAINCDIRS)) |
| 71 | CFLAGS += $(CSTANDARD) |
77 | CFLAGS += $(CSTANDARD) |
| - | 78 | CFLAGS += $(GENDEPFLAGS) |
|
| 72 | 79 | ||
| 73 | 80 | ||
| 74 | 81 | ||
| 75 | # Assembler flags. |
82 | # Assembler flags. |
| 76 | # -Wa,...: tell GCC to pass this to the assembler. |
83 | # -Wa,...: tell GCC to pass this to the assembler. |
| Line 79... | Line 86... | ||
| 79 | # for use in COFF files, additional information about filenames |
86 | # for use in COFF files, additional information about filenames |
| 80 | # and function names needs to be present in the assembler source |
87 | # and function names needs to be present in the assembler source |
| 81 | # files -- see avr-libc docs [FIXME: not yet described there] |
88 | # files -- see avr-libc docs [FIXME: not yet described there] |
| 82 | ##ASFLAGS = -Wa,-adhlns=$(<:.S=.lst),-gstabs |
89 | ##ASFLAGS = -Wa,-adhlns=$(<:.S=.lst),-gstabs |
| 83 | ASFLAGS = -mmcu=$(MCU) -I. -x assembler-with-cpp |
90 | ASFLAGS = -mmcu=$(MCU) -I. -x assembler-with-cpp |
| 84 | ASFLAGS += -Wa,-adhlns=$( |
91 | ASFLAGS += -Wa,-adhlns=$(@:.o=.lst),-g$(DEBUG) |
| 85 | 92 | ||
| 86 | 93 | ||
| 87 | #Additional libraries. |
94 | #Additional libraries. |
| 88 | 95 | ||
| 89 | # Minimalistic printf version |
96 | # Minimalistic printf version |
| Line 114... | Line 121... | ||
| 114 | # only used for heap (malloc()). |
121 | # only used for heap (malloc()). |
| 115 | #EXTMEMOPTS = -Wl,--defsym=__heap_start=0x801100,--defsym=__heap_end=0x80ffff |
122 | #EXTMEMOPTS = -Wl,--defsym=__heap_start=0x801100,--defsym=__heap_end=0x80ffff |
| 116 | 123 | ||
| 117 | EXTMEMOPTS = |
124 | EXTMEMOPTS = |
| 118 | 125 | ||
| 119 | BIOSOPTS = -Wl,- |
126 | BIOSOPTS = -Wl,-L$(BIOSDIR),-Tdata,$(BIOS_RAM_END) -lbios |
| 120 | 127 | ||
| 121 | # Linker flags. |
128 | # Linker flags. |
| 122 | # -Wl,...: tell GCC to pass this to linker. |
129 | # -Wl,...: tell GCC to pass this to linker. |
| 123 | # -Map: create map file |
130 | # -Map: create map file |
| 124 | # --cref: add cross reference to map file |
131 | # --cref: add cross reference to map file |
| Line 126... | Line 133... | ||
| 126 | LDFLAGS += $(EXTMEMOPTS) |
133 | LDFLAGS += $(EXTMEMOPTS) |
| 127 | LDFLAGS += $(BIOSOPTS) |
134 | LDFLAGS += $(BIOSOPTS) |
| 128 | LDFLAGS += $(PRINTF_LIB) $(SCANF_LIB) $(MATH_LIB) |
135 | LDFLAGS += $(PRINTF_LIB) $(SCANF_LIB) $(MATH_LIB) |
| 129 | 136 | ||
| 130 | # --------------------------------------------------------------------------- |
137 | # --------------------------------------------------------------------------- |
| 131 | - | ||
| 132 | # Define directories, if needed. |
- | |
| 133 | DIRAVR = c:/progra~1/winavr |
- | |
| 134 | DIRAVRBIN = $(DIRAVR)/bin |
- | |
| 135 | DIRAVRUTILS = $(DIRAVR)/utils/bin |
- | |
| 136 | DIRINC = . |
- | |
| 137 | DIRLIB = $(DIRAVR)/avr/lib |
- | |
| 138 | - | ||
| 139 | 138 | ||
| 140 | # Define programs and commands. |
139 | # Define programs and commands. |
| 141 | SHELL = sh |
140 | SHELL = sh |
| 142 | CC = avr-gcc |
141 | CC = avr-gcc |
| 143 | AWK = awk |
142 | AWK = awk |
| 144 | OBJCOPY = avr-objcopy |
143 | OBJCOPY = avr-objcopy |
| 145 | OBJDUMP = avr-objdump |
144 | OBJDUMP = avr-objdump |
| 146 | SIZE = avr-size |
145 | SIZE = avr-size |
| 147 | NM = avr-nm |
146 | NM = avr-nm |
| 148 |
|
147 | RM = rm -f |
| 149 |
|
148 | CP = cp |
| 150 | 149 | MKDIR = mkdir |
|
| 151 | 150 | ||
| 152 | 151 | ||
| 153 | 152 | ||
| 154 | # Define Messages |
153 | # Define Messages |
| 155 | # English |
154 | # English |
| 156 | MSG_ERRORS_NONE = Errors: none |
155 | MSG_ERRORS_NONE = Errors: none |
| 157 | MSG_BEGIN = -------- begin -------- |
156 | MSG_BEGIN = -------- begin -------- |
| 158 | MSG_END = -------- end -------- |
157 | MSG_END = -------- end -------- |
| Line 167... | Line 166... | ||
| 167 | MSG_LINKING = Linking: |
166 | MSG_LINKING = Linking: |
| 168 | MSG_COMPILING = Compiling: |
167 | MSG_COMPILING = Compiling: |
| 169 | MSG_ASSEMBLING = Assembling: |
168 | MSG_ASSEMBLING = Assembling: |
| 170 | MSG_DEPEND = Generating dependencies: |
169 | MSG_DEPEND = Generating dependencies: |
| 171 | MSG_CLEANING = Cleaning project: |
170 | MSG_CLEANING = Cleaning project: |
| - | 171 | MSG_CREATE = Creating: |
|
| 172 | 172 | ||
| 173 | - | ||
| 174 | - | ||
| 175 | - | ||
| 176 | # Define all object files. |
173 | # Define all object files. |
| 177 | OBJ = $( |
174 | OBJ = $(filter %.o,$(SOURCES:.c=.o) $(SOURCES:.S=.o)) |
| 178 | 175 | ||
| 179 | # Define all listing files. |
176 | # Define all listing files. |
| 180 | LST = $( |
177 | LST = $(OBJ:.o=.lst) |
| 181 | - | ||
| 182 | - | ||
| 183 | # Compiler flags to generate dependency files. |
- | |
| 184 | ### GENDEPFLAGS = -Wp,-M,-MP,-MT,$(*F).o,-MF,.dep/$(@F).d |
- | |
| 185 | GENDEPFLAGS = -M -MG -MP -MT "$(<:.c=.o) $@" -MF $@ |
- | |
| 186 | - | ||
| 187 | # Combine all necessary flags and optional flags. |
- | |
| 188 | # Add target processor to flags. |
- | |
| 189 | #ALL_CFLAGS = -mmcu=$(MCU) -I. $(CFLAGS) |
- | |
| 190 | #ALL_ASFLAGS = -mmcu=$(MCU) -I. -x assembler-with-cpp $(ASFLAGS) |
- | |
| 191 | - | ||
| 192 | 178 | ||
| - | 179 | # Define all dependency files. |
|
| - | 180 | DEP = $(OBJ:.o=.d) |
|
| 193 | 181 | ||
| - | 182 | BUILDDIRS = $(sort $(filter-out ./,$(dir $(OBJ)))) |
|
| 194 | 183 | ||
| - | 184 | BIOS_RAM_END := $(shell $(AWK) '/0x[0-9a-f]+.*__bios_ram_end/ { print $$1 }' $(BIOSDIR)/bios.map) |
|
| - | 185 | ||
| - | 186 | # Compiler flags to generate dependency files. |
|
| - | 187 | GENDEPFLAGS = -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" |
|
| 195 | 188 | ||
| 196 | # Default target. |
189 | # Default target. |
| 197 | all: |
190 | all: sizebefore buildtree config.h build sizeafter |
| 198 | 191 | ||
| 199 | build: elf hex eep lss sym |
192 | build: elf hex eep lss sym |
| 200 | 193 | ||
| 201 | elf: $(TARGET).elf |
194 | elf: $(TARGET).elf |
| 202 | hex: $(TARGET).hex |
195 | hex: $(TARGET).hex |
| 203 | eep: $(TARGET).eep |
196 | eep: $(TARGET).eep |
| 204 | lss: $(TARGET).lss |
197 | lss: $(TARGET).lss |
| 205 | sym: $(TARGET).sym |
198 | sym: $(TARGET).sym |
| 206 | config: config.h |
- | |
| 207 | - | ||
| 208 | install: hex |
- | |
| 209 | $(CANUPLOAD) $(CANULFLAGS) -n $(NODE_ID) -f $(TARGET).hex -r |
- | |
| 210 | - | ||
| 211 | reset: |
- | |
| 212 | $(CANUPLOAD) $(CANULFLAGS) -n $(NODE_ID) -r |
- | |
| 213 | - | ||
| 214 | start: |
- | |
| 215 | $(CANUPLOAD) $(CANULFLAGS) -n $(NODE_ID) -s |
- | |
| 216 | - | ||
| 217 | # Eye candy. |
- | |
| 218 | # AVR Studio 3.x does not check make's exit code but relies on |
- | |
| 219 | # the following magic strings to be generated by the compile job. |
- | |
| 220 | begin: |
- | |
| 221 | @echo |
- | |
| 222 | @echo $(MSG_BEGIN) |
- | |
| 223 | - | ||
| 224 | finished: |
- | |
| 225 | @echo $(MSG_ERRORS_NONE) |
- | |
| 226 | - | ||
| 227 | end: |
- | |
| 228 | @echo $(MSG_END) |
- | |
| 229 | @echo |
- | |
| 230 | 199 | ||
| - | 200 | buildtree: $(BUILDDIRS) |
|
| 231 | 201 | ||
| 232 | # Display size of file. |
202 | # Display size of file. |
| 233 | HEXSIZE = $(SIZE) --target=ihex $(TARGET).hex |
203 | HEXSIZE = $(SIZE) --target=ihex $(TARGET).hex |
| 234 | ELFSIZE = $(SIZE) $(TARGET).elf |
204 | ELFSIZE = $(SIZE) $(TARGET).elf |
| 235 | sizebefore: |
205 | sizebefore: |
| 236 | @if [ -f $(TARGET).elf ]; then echo; echo $(MSG_SIZE_BEFORE); $(ELFSIZE); echo; fi |
206 | @if [ -f $(TARGET).elf ]; then echo; echo $(MSG_SIZE_BEFORE); $(ELFSIZE); echo; fi |
| 237 | 207 | ||
| 238 | sizeafter: |
208 | sizeafter: |
| 239 | @if [ -f $(TARGET).elf ]; then echo; echo $(MSG_SIZE_AFTER); $(ELFSIZE); echo; fi |
209 | @if [ -f $(TARGET).elf ]; then echo; echo $(MSG_SIZE_AFTER); $(ELFSIZE); echo; fi |
| 240 | - | ||
| 241 | 210 | ||
| 242 | # Generate config.h from bios.inc and config.inc |
211 | # Generate config.h from bios.inc and config.inc |
| 243 | config.h: bios.inc config.inc |
212 | config.h: $(CFGDIR)/bios.inc $(CFGDIR)/config.inc |
| 244 | @echo Generating $@ |
213 | @echo Generating $@ |
| 245 | @echo "/* This file is automatically generated. Do not edit. */\n" > $@ |
214 | @echo "/* This file is automatically generated. Do not edit. */\n" > $@ |
| 246 | @cat $^ | $(AWK) 'BEGIN { FS="="; print "#ifndef CONFIG_H_\n#define CONFIG_H_\n" } /^[^#].*=.*/ { print "#define "$$1,$$2 } END { print "\n#endif /*CONFIG_H_*/" }' >> $@ |
215 | @cat $^ | $(AWK) 'BEGIN { FS="="; print "#ifndef CONFIG_H_\n#define CONFIG_H_\n" } /^[^#].*=.*/ { print "#define "$$1,$$2 } END { print "\n#endif /*CONFIG_H_*/" }' >> $@ |
| - | 216 | ||
| - | 217 | $(CFGDIR)/config.inc: $(SRCDIR)/config.inc.template |
|
| - | 218 | @if [ ! -f $@ ]; then cp $< $@; fi |
|
| 247 | 219 | ||
| 248 | # Display compiler version information. |
220 | # Display compiler version information. |
| 249 | gccversion : |
221 | gccversion : |
| 250 | @$(CC) --version |
222 | @$(CC) --version |
| 251 | 223 | ||
| Line 256... | Line 228... | ||
| 256 | --change-section-address .noinit-0x800000 \ |
228 | --change-section-address .noinit-0x800000 \ |
| 257 | --change-section-address .eeprom-0x810000 |
229 | --change-section-address .eeprom-0x810000 |
| 258 | 230 | ||
| 259 | 231 | ||
| 260 | coff: $(TARGET).elf |
232 | coff: $(TARGET).elf |
| 261 | @echo |
- | |
| 262 | @echo $(MSG_COFF) $(TARGET).cof |
233 | @echo $(MSG_COFF) $(TARGET).cof |
| 263 |
|
234 | @$(COFFCONVERT) -O coff-avr $< $(TARGET).cof |
| 264 | - | ||
| 265 | 235 | ||
| 266 | extcoff: $(TARGET).elf |
236 | extcoff: $(TARGET).elf |
| 267 | @echo |
- | |
| 268 | @echo $(MSG_EXTENDED_COFF) $(TARGET).cof |
237 | @echo $(MSG_EXTENDED_COFF) $(TARGET).cof |
| 269 |
|
238 | @$(COFFCONVERT) -O coff-ext-avr $< $(TARGET).cof |
| 270 | 239 | ||
| 271 | # Create final output files (.hex, .eep) from ELF output file. |
240 | # Create final output files (.hex, .eep) from ELF output file. |
| 272 | %.hex: %.elf |
241 | %.hex: %.elf |
| 273 | @echo |
- | |
| 274 | @echo $(MSG_FLASH) $@ |
242 | @echo $(MSG_FLASH) $@ |
| 275 |
|
243 | @$(OBJCOPY) -j .text -j .data -O ihex $< $@ |
| 276 | 244 | ||
| 277 | %.eep: %.elf |
245 | %.eep: %.elf |
| 278 | @echo |
- | |
| 279 | @echo $(MSG_EEPROM) $@ |
246 | @echo $(MSG_EEPROM) $@ |
| 280 | - |
247 | -@$(OBJCOPY) -j .eeprom --set-section-flags=.eeprom="alloc,load" \ |
| 281 | --change-section-lma .eeprom=0 -O ihex $< $@ |
248 | --change-section-lma .eeprom=0 -O ihex $< $@ |
| 282 | 249 | ||
| 283 | # Create extended listing file from ELF output file. |
250 | # Create extended listing file from ELF output file. |
| 284 | %.lss: %.elf |
251 | %.lss: %.elf |
| 285 | @echo |
- | |
| 286 | @echo $(MSG_EXTENDED_LISTING) $@ |
252 | @echo $(MSG_EXTENDED_LISTING) $@ |
| 287 |
|
253 | @$(OBJDUMP) -h -S $< > $@ |
| 288 | 254 | ||
| 289 | # Create a symbol table from ELF output file. |
255 | # Create a symbol table from ELF output file. |
| 290 | %.sym: %.elf |
256 | %.sym: %.elf |
| 291 | @echo |
- | |
| 292 | @echo $(MSG_SYMBOL_TABLE) $@ |
257 | @echo $(MSG_SYMBOL_TABLE) $@ |
| 293 |
|
258 | @$(NM) -n $< > $@ |
| 294 | - | ||
| 295 | - | ||
| 296 | 259 | ||
| 297 | # Link: create ELF output file from object files. |
260 | # Link: create ELF output file from object files. |
| 298 | .SECONDARY : $(TARGET).elf |
261 | .SECONDARY : $(TARGET).elf |
| 299 | .PRECIOUS : $(OBJ) |
262 | .PRECIOUS : $(OBJ) |
| 300 | ifneq (,$(filter atmega88 atmega168, $(MCU))) |
263 | ifneq (,$(filter atmega88 atmega168, $(MCU))) |
| 301 | %.elf: $(OBJ) |
264 | %.elf: $(OBJ) |
| 302 | @echo |
- | |
| 303 | @echo $(MSG_LINKING) $@ |
265 | @echo $(MSG_LINKING) $@ |
| 304 | @echo GCC bug workaround for ATmega88/ATmega168: |
266 | @echo GCC bug workaround for ATmega88/ATmega168: |
| 305 |
|
267 | @eval $$($(CC) -v $(CFLAGS) -o $@ $^ $(LDFLAGS) 2>&1 | $(AWK) '{ if (gsub("0x800100","$(BIOS_RAM_END)") == 1) print }') |
| 306 | else |
268 | else |
| 307 | %.elf: $(OBJ) |
269 | %.elf: $(OBJ) |
| 308 | @echo |
- | |
| 309 | @echo $(MSG_LINKING) $@ |
270 | @echo $(MSG_LINKING) $@ |
| 310 |
|
271 | @$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) |
| 311 | endif |
272 | endif |
| 312 | 273 | ||
| 313 | # Compile: create object files from C source files. |
274 | # Compile: create object files from C source files. |
| 314 | %.o : %.c |
275 | %.o : %.c |
| 315 | @echo |
- | |
| 316 | @echo $(MSG_COMPILING) $< |
276 | @echo $(MSG_COMPILING) $< |
| 317 |
|
277 | @$(CC) -c $(CFLAGS) $< -o $@ |
| 318 | - | ||
| 319 | 278 | ||
| 320 | # Compile: create assembler files from C source files. |
279 | # Compile: create assembler files from C source files. |
| 321 | %.s : %.c |
280 | %.s : %.c |
| 322 |
|
281 | @$(CC) -S $(CFLAGS) $< -o $@ |
| 323 | - | ||
| 324 | 282 | ||
| 325 | # Assemble: create object files from assembler source files. |
283 | # Assemble: create object files from assembler source files. |
| 326 | %.o : %.S |
284 | %.o : %.S |
| 327 | @echo |
- | |
| 328 | @echo $(MSG_ASSEMBLING) $< |
285 | @echo $(MSG_ASSEMBLING) $< |
| 329 | $(CC) -c $(ASFLAGS) $< -o $@ |
286 | $(CC) -c $(ASFLAGS) $< -o $@ |
| 330 | 287 | ||
| 331 | # Depends: create dependency files from c source files. |
288 | # Depends: create dependency files from c source files. |
| 332 |
|
289 | #%.d : %.c | $(BUILDDIRS) |
| 333 | @echo $(MSG_DEPEND) $< |
290 | # @echo $(MSG_DEPEND) $< |
| 334 | @$(CC) -c $(CFLAGS) $(GENDEPFLAGS) $< |
291 | # @$(CC) -c $(CFLAGS) $(GENDEPFLAGS) $< |
| - | 292 | ||
| - | 293 | # Buildtree: create directories for output files. |
|
| - | 294 | $(BUILDDIRS) : |
|
| - | 295 | @echo $(MSG_CREATE) $@ |
|
| - | 296 | @$(MKDIR) -p $@ |
|
| 335 | 297 | ||
| 336 | # Target: clean project. |
298 | # Target: clean project. |
| 337 | clean: begin clean_list finished end |
- | |
| 338 | - | ||
| 339 |
|
299 | clean: |
| 340 | @echo |
- | |
| 341 | @echo $(MSG_CLEANING) |
300 | @echo $(MSG_CLEANING) |
| 342 | $( |
301 | $(RM) $(TARGET).hex |
| 343 | $( |
302 | $(RM) $(TARGET).eep |
| 344 | $(REMOVE) $(TARGET).obj |
- | |
| 345 | $( |
303 | $(RM) $(TARGET).cof |
| 346 | $( |
304 | $(RM) $(TARGET).elf |
| 347 | $( |
305 | $(RM) $(TARGET).map |
| 348 | $(REMOVE) $(TARGET).obj |
- | |
| 349 | $(REMOVE) $(TARGET).a90 |
- | |
| 350 | $( |
306 | $(RM) $(TARGET).sym |
| 351 | $(REMOVE) $(TARGET).lnk |
- | |
| 352 | $( |
307 | $(RM) $(TARGET).lss |
| 353 | $( |
308 | $(RM) $(OBJ) |
| 354 | $( |
309 | $(RM) $(DEP) |
| 355 | $(REMOVE) $(CSRC:.c=.s) |
- | |
| 356 | $(REMOVE) $(CSRC:.c=.d) |
- | |
| 357 | $( |
310 | $(RM) $(LST) |
| 358 | $( |
311 | $(RM) config.h |
| 359 | 312 | ||
| 360 | 313 | distclean: clean |
|
| - | 314 | $(RM) -r $(BUILDDIRS) |
|
| 361 | 315 | ||
| 362 | # Include the dependency files. |
316 | # Include the dependency files. |
| - | 317 | ifneq ($(MAKECMDGOALS),clean) |
|
| - | 318 | ifneq ($(strip $(DEP)),) |
|
| 363 | -include $( |
319 | -include $(DEP) |
| - | 320 | endif |
|
| 364 | 321 | endif |
|
| 365 | 322 | ||
| 366 | # Listing of phony targets. |
323 | # Listing of phony targets. |
| 367 | .PHONY : all |
324 | .PHONY : all sizebefore sizeafter build \ |
| 368 |
|
325 | elf hex eep lss sym coff extcoff clean \ |
| 369 |
|
326 | distclean gccversion |
| 370 | 327 | ||