You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.6 KiB
73 lines
2.6 KiB
# File: Makefile
|
|
# Author: M. P. Hayes, UCECE
|
|
# Date: 12 Sep 2010
|
|
# Descr: Makefile for ir_serial_test1
|
|
|
|
# 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: ir_serial_test1.out
|
|
|
|
|
|
# Compile: create object files from C source files.
|
|
ir_serial_test1.o: ir_serial_test1.c ../../drivers/avr/system.h ../../drivers/display.h ../../drivers/ir.h ../../drivers/ir_serial.h ../../drivers/navswitch.h ../../fonts/font3x5_1.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 $@
|
|
|
|
ir.o: ../../drivers/ir.c ../../drivers/avr/delay.h ../../drivers/avr/pio.h ../../drivers/avr/system.h ../../drivers/ir.h
|
|
$(CC) -c $(CFLAGS) $< -o $@
|
|
|
|
ir_serial.o: ../../drivers/ir_serial.c ../../drivers/avr/delay.h ../../drivers/avr/system.h ../../drivers/ir.h ../../drivers/ir_serial.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 $@
|
|
|
|
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 $@
|
|
|
|
tinygl.o: ../../utils/tinygl.c ../../drivers/avr/system.h ../../drivers/display.h ../../utils/font.h ../../utils/tinygl.h
|
|
$(CC) -c $(CFLAGS) $< -o $@
|
|
|
|
|
|
|
|
# Link: create ELF output file from object files.
|
|
ir_serial_test1.out: display.o ir.o ir_serial.o ir_serial_test1.o ledmat.o navswitch.o pacer.o pio.o system.o timer.o tinygl.o
|
|
$(CC) $(CFLAGS) $^ -o $@ -lm
|
|
$(SIZE) $@
|
|
|
|
|
|
# Target: clean project.
|
|
.PHONY: clean
|
|
clean:
|
|
-$(DEL) *.o *.out *.hex
|
|
|
|
|
|
# Target: program project.
|
|
.PHONY: program
|
|
program: ir_serial_test1.out
|
|
$(OBJCOPY) -O ihex ir_serial_test1.out ir_serial_test1.hex
|
|
dfu-programmer atmega32u2 erase; dfu-programmer atmega32u2 flash ir_serial_test1.hex; dfu-programmer atmega32u2 start
|
|
|
|
|