summaryrefslogtreecommitdiff
path: root/digital/avr/modules/path/astar/test/Makefile
diff options
context:
space:
mode:
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 $^