summaryrefslogtreecommitdiffhomepage
path: root/digital/avr/modules/math/geometry/test/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'digital/avr/modules/math/geometry/test/Makefile')
-rw-r--r--digital/avr/modules/math/geometry/test/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/digital/avr/modules/math/geometry/test/Makefile b/digital/avr/modules/math/geometry/test/Makefile
new file mode 100644
index 00000000..5d12dc0a
--- /dev/null
+++ b/digital/avr/modules/math/geometry/test/Makefile
@@ -0,0 +1,13 @@
+BASE = ../../../..
+HOST_PROGS = test_geometry
+SIMU_PROGS = test_geometry
+test_geometry_SOURCES = test_geometry.c
+MODULES = utils uart math/fixed math/geometry
+CONFIGFILE = avrconfig.h
+# atmega8, atmega8535, atmega128...
+AVR_MCU = atmega128
+# -O2 : speed
+# -Os : size
+OPTIMIZE = -O2
+
+include $(BASE)/make/Makefile.gen