summaryrefslogtreecommitdiff
path: root/digital/avr/modules/path/test/Makefile
diff options
context:
space:
mode:
authorNicolas Schodet2008-06-17 22:57:24 +0200
committerNicolas Schodet2008-06-17 22:57:24 +0200
commit72f865523b14953d13a207599068ba68e9df0b70 (patch)
tree8813a1213c2b0b9e89ed043d9dd6efc4cbffaec0 /digital/avr/modules/path/test/Makefile
parent19c0b55ba097db272d96d879e2895e2654a2c91c (diff)
* digital/avr/modules/path, digital/io/src:
- moved path finding to a separated module.
Diffstat (limited to 'digital/avr/modules/path/test/Makefile')
-rw-r--r--digital/avr/modules/path/test/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/digital/avr/modules/path/test/Makefile b/digital/avr/modules/path/test/Makefile
new file mode 100644
index 00000000..698ee538
--- /dev/null
+++ b/digital/avr/modules/path/test/Makefile
@@ -0,0 +1,12 @@
+BASE = ../../..
+HOST_PROGS = test_path
+test_path_SOURCES = test_path.c
+MODULES = path math/fixed utils
+CONFIGFILE = avrconfig.h
+# atmega8, atmega8535, atmega128...
+AVR_MCU = atmega128
+# -O2 : speed
+# -Os : size
+OPTIMIZE = -O2
+
+include $(BASE)/make/Makefile.gen