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

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

include $(BASE)/make/Makefile.gen