summaryrefslogtreecommitdiff
path: root/digital/avr/modules/twi/test/soft/Makefile
blob: 68b9da2cf9e87e2171ad850896eda82bdf059a9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
BASE = ../../../..
AVR_PROGS = test_twi_soft
test_twi_soft_SOURCES = test_twi.c
MODULES = twi uart proto math/random utils
CONFIGFILE = avrconfig.h
# atmega8, atmega8535, atmega128...
AVR_MCU = atmega128
# -O2 : speed
# -Os : size
OPTIMIZE = -Os

vpath %.c ..

include $(BASE)/make/Makefile.gen