bicycle_odometer

view Makefile @ 0:0c1707508070

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 23 Aug 2011 19:01:11 +0300
parents
children f74f4561e71c
line source
1 src = $(wildcard *.c)
2 obj = $(src:.c=.o)
3 bin = odometer
4 hex = $(bin).hex
5 eep = $(bin).eep
7 mcu_gcc = atmega168
8 mcu_dude = m168
10 CC = avr-gcc
11 OBJCOPY = avr-objcopy
13 CFLAGS = -O2 -pedantic -Wall -mmcu=$(mcu_gcc)
14 LDFLAGS = -Wl,-Map,$(bin).map -mmcu=$(mcu_gcc)
16 .PHONY: all
17 all: $(hex) $(eep)
19 $(bin): $(obj)
20 $(CC) -o $@ $(obj) $(LDFLAGS)
22 $(hex): $(bin)
23 $(OBJCOPY) -j .text -j .data -O ihex -R .eeprom $< $@
25 $(eep): $(bin)
26 $(OBJCOPY) -j .eeprom --change-section-lma .eeprom=0 -O ihex $< $@
28 .PHONY: fuses
29 fuses:
30 avrdude -c usbtiny -p $(mcu_dude) -U lfuse:w:0x66:m
32 .PHONY: program
33 program: $(hex)
34 avrdude -c usbtiny -p $(mcu_dude) -e -U flash:w:$(hex)
36 .PHONY: clean
37 clean:
38 rm -f $(bin) $(obj) $(hex) $(eep) $(bin).$(map)