# File: Makefile # Author: M. P. Hayes, UCECE # Date: 12 Sep 2010 # Descr: Makefile for led4 # 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: led4.out # Compile: create object files from C source files. led4.o: led4.c ../../drivers/avr/system.h ../../drivers/led.h ../../drivers/navswitch.h ../../utils/pacer.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 $@ led.o: ../../drivers/led.c ../../drivers/avr/pio.h ../../drivers/avr/system.h ../../drivers/led.h $(CC) -c $(CFLAGS) $< -o $@ navswitch.o: ../../drivers/navswitch.c ../../drivers/avr/delay.h ../../drivers/avr/pio.h ../../drivers/avr/system.h ../../drivers/navswitch.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 output file (executable) from object files. led4.out: led4.o pio.o system.o timer.o led.o navswitch.o pacer.o $(CC) $(CFLAGS) $^ -o $@ -lm $(SIZE) $@ # Create hex file for programming from executable file. led4.hex: led4.out $(OBJCOPY) -O ihex led4.out led4.hex # Target: clean project. .PHONY: clean clean: -$(DEL) *.o *.out *.hex # Target: program project. .PHONY: program program: led4.hex dfu-programmer atmega32u2 erase; dfu-programmer atmega32u2 flash led4.hex; dfu-programmer atmega32u2 start