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