summaryrefslogtreecommitdiff
path: root/digital/beacon/simu/Makefile
blob: 132f0b2ef9937c3e4a7a13d0a38e04b5c6858dbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
BASE = ../../avr
HOST_PROGS = beacon
beacon_SOURCES = beacon.c position.c
MODULES = math/fixed utils
CONFIGFILE = avrconfig.h
# atmega8, atmega8535, atmega128...
AVR_MCU = atmega128
# -O2 : speed
# -Os : size
OPTIMIZE = -O2 -lm

include $(BASE)/make/Makefile.gen