summaryrefslogtreecommitdiff
path: root/src/binwatch/Makefile
blob: cf20b6dd26a4486e03ae96626ab059f5422efeb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
BASE = $b/digital/avr
AVR_PROGS = counter
counter_SOURCES = counter.c led.c
MODULES = utils
CONFIGFILE = avrconfig.h
# atmega8, atmega8535, atmega128...
AVR_MCU = attiny85
# -O2 : speed
# -Os : size
OPTIMIZE = -Os

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

include $(BASE)/make/Makefile.gen