summaryrefslogtreecommitdiffhomepage
path: root/digital/avr/modules/motor/encoder/test/Makefile
blob: 0d15f5dc9ad32035560fbacc8ac19fa1114f8495 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
BASE = ../../../..
PROGS = test_encoder_ext
test_encoder_ext_SOURCES = test_encoder.c
MODULES = utils uart proto math/fixed motor/encoder motor/encoder/ext
CONFIGFILE = avrconfig_xmem.h
# atmega8, atmega8535, atmega128...
AVR_MCU = atmega128
# -O2 : speed
# -Os : size
OPTIMIZE = -Os

TEST_MCU = atmega128
TEST_CONFIGFILES = avrconfig_xmem.h avrconfig_io.h

include $(BASE)/make/Makefile.gen