PRG = tempsense CPUTYPE = atmega32u4 OPTIMIZE = -O CC = avr-gcc OBJDUMP = avr-objdump OBJCOPY = avr-objcopy all: $(PRG).s $(PRG).elf $(PRG).lst text clean: rm $(PRG).elf $(PRG).s $(PRG).lst $(PRG).hex $(PRG).bin $(PRG).srec $(PRG).elf: $(PRG).c $(CC) -lm -g -mmcu=$(CPUTYPE) -Wall $(OPTIMIZE) -o $(PRG).elf $(PRG).c $(PRG).s: $(PRG).c $(CC) -mmcu=$(CPUTYPE) -Wall $(OPTIMIZE) -S $(PRG).c $(PRG).lst: $(PRG).elf $(OBJDUMP) -h -S $(PRG).elf >$(PRG).lst # Rules for building the .text rom images text: hex hex: $(PRG).hex %.hex: %.elf $(OBJCOPY) -j .text -j .data -O ihex $< $@