summaryrefslogtreecommitdiff
path: root/digital/avr/modules/flash/test/Makefile
blob: 1ae64f7f0a5259e86de5d3198add6820b765d508 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
BASE = ../../..
AVR_PROGS = test-write-onbyte test-erase test-write-anarray test-init

test-write-onbyte_SOURCES = test-write-onebyte.c
test-erase_SOURCES = test-erase.c
test-write-anarray_SOURCES = test-write-anarray.c
test-init_SOURCES = test-init.c

MODULES = utils spi flash proto uart
CONFIGFILE = avrconfig.h
# atmega8, atmega8535, atmega128...
AVR_MCU = atmega128
# -O2 : speed
# -Os : size
OPTIMIZE = -O2

include $(BASE)/make/Makefile.gen