summaryrefslogtreecommitdiff
path: root/n/avr/modules/twi/master/test/Makefile
blob: 80e6caaf11bb81ea2cb9e21c35497f421705a0ac (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_master
test_twi_master_SOURCES = test_twi_master.c
DOC =
EXTRACTDOC =
MODULES = uart proto twi/master
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