From c199bfa0012d763f1e4684c3cd0ab6c07134ddce Mon Sep 17 00:00:00 2001 From: Nicolas Schodet Date: Fri, 23 Apr 2010 00:34:18 +0200 Subject: digital/avr/modules/path/astar: new A* module --- digital/avr/modules/path/astar/test/Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 digital/avr/modules/path/astar/test/Makefile (limited to 'digital/avr/modules/path/astar/test/Makefile') 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 $^ -- cgit v1.2.3