summaryrefslogtreecommitdiff
path: root/n/asserv/src/asserv/Makefile
blob: 6fe0762fb14faeafdf5722da02c3b027c62202d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
BASE = ../../../avr
PROGS = asserv
HOST_PROGS = test_motor_model
asserv_SOURCES = main.c simu.host.c
test_motor_model_SOURCES = test_motor_model.c motor_model.c taz_model.c
MODULES = proto uart utils
test_motor_model_MODULES =
CONFIGFILE = avrconfig.h
# atmega8, atmega8535, atmega128...
AVR_MCU = atmega128
# -O2 : speed
# -Os : size
OPTIMIZE = -O2

include $(BASE)/make/Makefile.gen