summaryrefslogtreecommitdiff
path: root/digital/avr/modules/utils/test/Makefile
blob: 5724a5e225b7a1ed46b8672c20b487706dd2e35b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
BASE = ../../..
PROGS = test_utils test_byte test_crc
AVR_PROGS = test_byte_methods
test_utils_SOURCES = test_utils.c
test_byte_SOURCES = test_byte.c
test_byte_methods_SOURCES = test_byte_methods.c
test_crc_SOURCES = test_crc.c
MODULES = utils
CONFIGFILE = avrconfig.h
# atmega8, atmega8535, atmega128...
AVR_MCU = atmega128
# -O2 : speed
# -Os : size
OPTIMIZE = -O2

include $(BASE)/make/Makefile.gen