-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
56 lines (46 loc) · 1.58 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
all: avrsysh.hex
OBJS = \
avr_mcu.o \
bricks.o \
command.o \
draw.o \
dump.o \
grep.o \
led.o \
main.o \
pm.o \
pong.o \
rng.o \
seq.o \
serial.o \
serial_proxy.o \
snake.o \
sp_mon.o \
term.o \
thermal.o \
thread.o \
time.o \
timer.o \
util.o \
wc.o
%.o: %.c
$(AVR_TOOLS_DIR)/bin/avr-gcc -c -Os -mmcu=$(AVR_MCU) -DF_CPU=16000000L -o $@ $<
%.o: %.S
$(AVR_TOOLS_DIR)/bin/avr-as -c -mmcu=$(AVR_MCU) -o $@ $<
avrsysh.elf: $(OBJS)
$(AVR_TOOLS_DIR)/bin/avr-gcc -Os -mmcu=$(AVR_MCU) -o avrsysh.elf *.o -lm
$(AVR_TOOLS_DIR)/bin/avr-size avrsysh.elf
avrsysh.hex: avrsysh.elf
$(AVR_TOOLS_DIR)/bin/avr-objcopy -O ihex -j .eeprom --set-section-flags=.eeprom=alloc,load --no-change-warnings --change-section-lma .eeprom=0 avrsysh.elf avrsysh.eep
$(AVR_TOOLS_DIR)/bin/avr-objcopy -O ihex -R .eeprom avrsysh.elf avrsysh.hex
$(AVR_TOOLS_DIR)/bin/avr-size avrsysh.hex
clean:
rm -rf *.o *.hex *.elf *.asm *.eep
flash: avrsysh.hex
$(AVR_TOOLS_DIR)/bin/avrdude -C $(AVR_TOOLS_DIR)/etc/avrdude.conf -p $(AVR_MCU) -c stk500v1 -P $(AVR_FLASH_PORT) -b57600 -D -Uflash:w:avrsysh.hex:i
flash_uno: avrsysh.hex
$(AVR_TOOLS_DIR)/bin/avrdude -C $(AVR_TOOLS_DIR)/etc/avrdude.conf -p $(AVR_MCU) -c arduino -P $(AVR_FLASH_PORT) -b115200 -D -Uflash:w:avrsysh.hex:i
flash_2560: avrsysh.hex
$(AVR_TOOLS_DIR)/bin/avrdude -C $(AVR_TOOLS_DIR)/etc/avrdude.conf -p $(AVR_MCU) -c wiring -P $(AVR_FLASH_PORT) -b115200 -D -Uflash:w:avrsysh.hex:i
flash_32u4: avrsysh.hex
$(AVR_TOOLS_DIR)/bin/avrdude -C $(AVR_TOOLS_DIR)/etc/avrdude.conf -p $(AVR_MCU) -c avr109 -P $(AVR_FLASH_PORT) -b57600 -D -Uflash:w:avrsysh.hex:i