# File: Makefile # Author: M. P. Hayes, UCECE # Date: 12 Sep 2010 # Descr: Makefile for hello1 # Definitions. CC = avr-gcc CFLAGS = -mmcu=atmega32u2 -Os -Wall -Wstrict-prototypes -Wextra -g -I. -I../../utils -I../../fonts -I../../drivers -I../../drivers/avr OBJCOPY = avr-objcopy SIZE = avr-size DEL = rm # Default target. all: hello1.out # Compile: create object files from C source files. hello1.o: hello1.c ../../drivers/avr/system.h ../../drivers/ledmat.h ../../utils/pacer.h simplefont.h $(CC) -c $(CFLAGS) $< -o $@ pio.o: ../../drivers/avr/pio.c ../../drivers/avr/pio.h ../../drivers/avr/system.h $(CC) -c $(CFLAGS) $< -o $@ system.o: ../../drivers/avr/system.c ../../drivers/avr/system.h $(CC) -c $(CFLAGS) $< -o $@ timer.o: ../../drivers/avr/timer.c ../../drivers/avr/system.h ../../drivers/avr/timer.h $(CC) -c $(CFLAGS) $< -o $@ ledmat.o: ../../drivers/ledmat.c ../../drivers/avr/pio.h ../../drivers/avr/system.h ../../drivers/ledmat.h $(CC) -c $(CFLAGS) $< -o $@ pacer.o: ../../utils/pacer.c ../../drivers/avr/system.h ../../drivers/avr/timer.h ../../utils/pacer.h $(CC) -c $(CFLAGS) $< -o $@ # Link: create ELF output file from object files. hello1.out: hello1.o ledmat.o pacer.o pio.o system.o timer.o $(CC) $(CFLAGS) $^ -o $@ -lm $(SIZE) $@ # Target: clean project. .PHONY: clean clean: -$(DEL) *.o *.out *.hex # Target: program project. .PHONY: program program: hello1.out $(OBJCOPY) -O ihex hello1.out hello1.hex dfu-programmer atmega32u2 erase; dfu-programmer atmega32u2 flash hello1.hex; dfu-programmer atmega32u2 start