summaryrefslogtreecommitdiff
path: root/digital/avr/modules/math/geometry/test/Makefile
diff options
context:
space:
mode:
authorNicolas Schodet2010-04-07 23:51:28 +0200
committerNicolas Schodet2010-04-07 23:51:28 +0200
commitbed724fe33b2dc903b89f8f8517738370c751cd1 (patch)
treee4b12a550040d37c09aa820e0d386d61623bb26f /digital/avr/modules/math/geometry/test/Makefile
parent36e5745b7b72749d95f71689478b06cc6b76245d (diff)
digital/avr/modules/math/geometry: add new module
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