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

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

include $(BASE)/make/Makefile.gen