summaryrefslogtreecommitdiff
path: root/digital/dev2/src/usb_serial_isp/Makefile
blob: d2124ae1cc395ccf62fa3005188e165a64210c10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
BASE = ../../../avr
AVR_PROGS = dev2_serial_isp
dev2_serial_isp_SOURCES = main.c descriptors.c serial.c select.c
MODULES = usb uart isp
CONFIGFILE = avrconfig.h
AVR_MCU = at90usb162
# -O2 : speed
# -Os : size
OPTIMIZE = -Os

INCLUDES = -I.. -I.
vpath %.c ../common

include $(BASE)/make/Makefile.gen