summaryrefslogtreecommitdiff
path: root/digital/avr/modules/twi/test/slave/Makefile
blob: fbabd11d2eff33b2df550fcaee30deca242af728 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
BASE = ../../../..
PROGS = test_twi_slave
test_twi_slave_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