aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.standalone
diff options
context:
space:
mode:
Diffstat (limited to 'src/Makefile.standalone')
-rw-r--r--src/Makefile.standalone15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/Makefile.standalone b/src/Makefile.standalone
new file mode 100644
index 0000000..2e369df
--- /dev/null
+++ b/src/Makefile.standalone
@@ -0,0 +1,15 @@
+# Makefile for standalone test programs in this directory
+# $Header$
+
+test_molecule_posn : test_molecule_posn.c molecule_posn.c \
+ InterpLocalUniform.h
+ gcc -g \
+ -Wall -W -Wno-unused -Wshadow -Winline -Wpointer-arith \
+ -Wbad-function-cast -Wcast-align -Wcast-qual \
+ -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations \
+ -DAEILOCALINTERP_STANDALONE_TEST -o test_molecule_posn \
+ test_molecule_posn.c molecule_posn.c -lm
+
+.PHONY : clean
+clean :
+ -rm test_molecule_posn