summaryrefslogtreecommitdiff
path: root/digital/avr/modules/motor/motor_model/test/Makefile
diff options
context:
space:
mode:
authorNicolas Schodet2011-12-18 15:16:09 +0100
committerNicolas Schodet2012-03-06 23:16:34 +0100
commit5948ad3b390c3c7a8deac3fea4aa6f6e93f395f7 (patch)
tree79c69b4f1ab064751c03a6078494119c6a2eb375 /digital/avr/modules/motor/motor_model/test/Makefile
parent928dc853e088849580aac368401999ea596644bb (diff)
digital/avr/modules/motor: add motor model
Diffstat (limited to 'digital/avr/modules/motor/motor_model/test/Makefile')
-rw-r--r--digital/avr/modules/motor/motor_model/test/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/digital/avr/modules/motor/motor_model/test/Makefile b/digital/avr/modules/motor/motor_model/test/Makefile
new file mode 100644
index 00000000..256d1128
--- /dev/null
+++ b/digital/avr/modules/motor/motor_model/test/Makefile
@@ -0,0 +1,10 @@
+BASE = ../../../..
+HOST_PROGS = test_motor_model
+test_motor_model_SOURCES = test_motor_model.c
+MODULES = motor/motor_model
+# -O2 : speed
+# -Os : size
+OPTIMIZE = -O2
+HOST_LIBS = -lm
+
+include $(BASE)/make/Makefile.gen