summaryrefslogtreecommitdiff
path: root/digital/avr/modules/twi/test/soft/Makefile
diff options
context:
space:
mode:
authorNicolas Schodet2010-11-29 23:07:51 +0100
committerNicolas Schodet2010-11-29 23:07:51 +0100
commitdb09cf20e709a1aafd1d91a5de99e4dcda7927a4 (patch)
treed50f18a9e63320ad1a0d64f7d9e88e8ba90a0b51 /digital/avr/modules/twi/test/soft/Makefile
parentdb212811293f91e0f1147eb57e5f6d5df2db10ef (diff)
digital/avr/modules/twi: implement software master, closes #141
Diffstat (limited to 'digital/avr/modules/twi/test/soft/Makefile')
-rw-r--r--digital/avr/modules/twi/test/soft/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/digital/avr/modules/twi/test/soft/Makefile b/digital/avr/modules/twi/test/soft/Makefile
new file mode 100644
index 00000000..68b9da2c
--- /dev/null
+++ b/digital/avr/modules/twi/test/soft/Makefile
@@ -0,0 +1,14 @@
+BASE = ../../../..
+AVR_PROGS = test_twi_soft
+test_twi_soft_SOURCES = test_twi.c
+MODULES = twi uart proto math/random utils
+CONFIGFILE = avrconfig.h
+# atmega8, atmega8535, atmega128...
+AVR_MCU = atmega128
+# -O2 : speed
+# -Os : size
+OPTIMIZE = -Os
+
+vpath %.c ..
+
+include $(BASE)/make/Makefile.gen