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