28 lines
626 B
Makefile
28 lines
626 B
Makefile
MCU=atmega8
|
|
CFLAGS=-g -Wall -mcall-prologues -mmcu=$(MCU) -O2 -DF_CPU=8000000
|
|
LDFLAGS=-Wl,-gc-sections -Wl,-relax
|
|
CC=avr-gcc
|
|
TARGET=main
|
|
OBJECT_FILES=main.o
|
|
|
|
all: $(TARGET).hex
|
|
|
|
clean:
|
|
rm -f *.o *.hex *.obj *.hex
|
|
|
|
%.hex: %.obj
|
|
avr-objcopy -R .eeprom -O ihex $< $@
|
|
|
|
%.obj: $(OBJECT_FILES)
|
|
$(CC) $(CFLAGS) $(OBJECT_FILES) $(LDFLAGS) -o $@
|
|
avr-size -C --mcu=atmega8 main.obj
|
|
|
|
program: $(TARGET).obj
|
|
avrdude -p $(MCU) -c usbasp -U flash:w:$(TARGET).hex
|
|
#avrdude -p $(MCU) -P /dev/ttyUSB1 -c arduino -b 57600 -U flash:w:$(TARGET).hex
|
|
|
|
fuse:
|
|
avrdude -p m8 -c usbasp -U lfuse:w:0xe4:m -U hfuse:w:0xd9:m
|
|
|
|
.phony: program fuse
|