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