summaryrefslogtreecommitdiffhomepage
path: root/digital/beacon/src/stub/Makefile
diff options
context:
space:
mode:
authorNicolas Schodet2012-04-22 22:07:20 +0200
committerNicolas Schodet2012-04-22 22:07:20 +0200
commita750fc58646c6f1ab5319d9bcf786be7a525a77c (patch)
tree7a7b8d87481295f46611f44878a07265de8c546d /digital/beacon/src/stub/Makefile
parentcf31e4384e7b0fe3130b380f7e5440931d4a9fa0 (diff)
digital/{ai,beacon,io-hub}: add beacon simulation stub
Diffstat (limited to 'digital/beacon/src/stub/Makefile')
-rw-r--r--digital/beacon/src/stub/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/digital/beacon/src/stub/Makefile b/digital/beacon/src/stub/Makefile
new file mode 100644
index 00000000..2f97d775
--- /dev/null
+++ b/digital/beacon/src/stub/Makefile
@@ -0,0 +1,12 @@
+BASE = ../../../avr
+HOST_PROGS = simu_stub
+simu_stub_SOURCES = simu_stub.host.c
+MODULES = utils host twi
+CONFIGFILE = avrconfig.h
+# atmega8, atmega8535, atmega128...
+AVR_MCU = atmega128
+# -O2 : speed
+# -Os : size
+OPTIMIZE = -O2
+
+include $(BASE)/make/Makefile.gen