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