summaryrefslogtreecommitdiff
path: root/src/bwbootloader/Makefile
blob: 2f477bb42c87b05a3e55e9c9cd4a7024acf3bdbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
BASE = $b/digital/avr
AVR_PROGS = bwbootloader
bwbootloader_SOURCES = bwbootloader.c prog.c spacer.avr.S
MODULES = twi utils
CONFIGFILE = avrconfig.h
# atmega8, atmega8535, atmega128...
AVR_MCU = attiny85
# -O2 : speed
# -Os : size
OPTIMIZE = -Os

include $(BASE)/make/Makefile.gen