summaryrefslogtreecommitdiff
path: root/n/avr/modules/uart/test/Makefile
blob: 3f162fc7062083c0102da3cb6091ed43bcedfd5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
BASE = ../../..
PROGS = test_uart
test_uart_SOURCES = test_uart.c
DOC =
EXTRACTDOC =
MODULES = uart utils
CONFIGFILE = avrconfig_ring.h
# atmega8, atmega8535, atmega128...
AVR_MCU = atmega8
# -O2 : speed
# -Os : size
OPTIMIZE = -O2

DEFS =
LIBS =

# Test compilations.
TEST_MCU = atmega8 atmega8535 atmega128
TEST_CONFIGFILES = avrconfig_ring.h avrconfig_polling.h avrconfig_twoports.h
avrconfig_twoports_MCU = atmega128

include $(BASE)/make/Makefile.gen