summaryrefslogtreecommitdiff
path: root/digital/beacon/simu/Makefile
diff options
context:
space:
mode:
authorFlorent Duchon2011-12-26 23:48:32 +0100
committerFlorent Duchon2011-12-26 23:48:32 +0100
commit7872d2b5c319862f943d2c1340ecee1d7721d7f4 (patch)
treeaf3754adb98c81c7147ef95050a34b762e991e21 /digital/beacon/simu/Makefile
parenta0d7ee857c15e8ec8bd6c2df98048c2ee41a0e68 (diff)
First version of Beacons Simulator
Diffstat (limited to 'digital/beacon/simu/Makefile')
-rw-r--r--digital/beacon/simu/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/digital/beacon/simu/Makefile b/digital/beacon/simu/Makefile
new file mode 100644
index 00000000..132f0b2e
--- /dev/null
+++ b/digital/beacon/simu/Makefile
@@ -0,0 +1,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