summaryrefslogtreecommitdiff
path: root/n/avr/modules/twi/slave/test/Makefile
blob: 219ae62e0063328f22530ed9b50e74158dea49a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
BASE = ../../../..
AVR_PROGS = test_twi_slave
test_twi_slave_SOURCES = test_twi_slave.c
DOC =
EXTRACTDOC =
MODULES = uart twi/slave
CONFIGFILE = avrconfig.h
# atmega8, atmega8535, atmega128...
AVR_MCU = atmega8
# -O2 : speed
# -Os : size
OPTIMIZE = -O2

DEFS =
LIBS =

# Test compilations.
TEST_MCU = atmega8535 atmega128
TEST_CONFIGFILES = avrconfig.h

include $(BASE)/make/Makefile.gen