summaryrefslogtreecommitdiff
path: root/digital/avr/modules/path/astar/test/Makefile
diff options
context:
space:
mode:
authorNicolas Schodet2010-04-23 00:34:18 +0200
committerNicolas Schodet2010-04-23 00:34:18 +0200
commitc199bfa0012d763f1e4684c3cd0ab6c07134ddce (patch)
treebc517cf3303a1ac63ac335e4781b69dd1016ac28 /digital/avr/modules/path/astar/test/Makefile
parent98a10d5c181d40f8ea3d600d712ed249417a963e (diff)
digital/avr/modules/path/astar: new A* module
Diffstat (limited to 'digital/avr/modules/path/astar/test/Makefile')
-rw-r--r--digital/avr/modules/path/astar/test/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/digital/avr/modules/path/astar/test/Makefile b/digital/avr/modules/path/astar/test/Makefile
new file mode 100644
index 00000000..c6b81faf
--- /dev/null
+++ b/digital/avr/modules/path/astar/test/Makefile
@@ -0,0 +1,15 @@
+BASE = ../../../..
+HOST_PROGS = test_astar
+test_astar_SOURCES = test_astar.c
+MODULES = path/astar
+CONFIGFILE = avrconfig.h
+# atmega8, atmega8535, atmega128...
+AVR_MCU = atmega128
+# -O2 : speed
+# -Os : size
+OPTIMIZE = -O2
+
+include $(BASE)/make/Makefile.gen
+
+check: test_astar.pl test_astar.host
+ perl $^