aboutsummaryrefslogtreecommitdiff
path: root/src/GeneralizedPolynomial-Uniform/makefile
diff options
context:
space:
mode:
authorjthorn <jthorn@df1f8a13-aa1d-4dd4-9681-27ded5b42416>2002-02-27 14:28:36 +0000
committerjthorn <jthorn@df1f8a13-aa1d-4dd4-9681-27ded5b42416>2002-02-27 14:28:36 +0000
commit717d39a68230908f36b7098e66d0dd76dd067148 (patch)
tree397cda867657459ef518b65cd87def3517958253 /src/GeneralizedPolynomial-Uniform/makefile
parentac713b27a07fa17689464ac2e9e7275169f116ea (diff)
initial checkin of new LocalInterp thorn
git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/LocalInterp/trunk@2 df1f8a13-aa1d-4dd4-9681-27ded5b42416
Diffstat (limited to 'src/GeneralizedPolynomial-Uniform/makefile')
-rw-r--r--src/GeneralizedPolynomial-Uniform/makefile68
1 files changed, 68 insertions, 0 deletions
diff --git a/src/GeneralizedPolynomial-Uniform/makefile b/src/GeneralizedPolynomial-Uniform/makefile
new file mode 100644
index 0000000..a5a5a6d
--- /dev/null
+++ b/src/GeneralizedPolynomial-Uniform/makefile
@@ -0,0 +1,68 @@
+.PHONY : all
+all : 2d 3d
+
+.PHONY : 1d
+1d :
+ -rm -rf 1d.coeffs
+ mkdir 1d.coeffs
+ cd 1d.coeffs && mkdir 1d.cube.size2
+ cd 1d.coeffs && mkdir 1d.cube.size3
+ cd 1d.coeffs && mkdir 1d.cube.size4
+ cd 1d.coeffs && mkdir 1d.cube.size5
+ cd 1d.coeffs && mkdir 1d.cube.size6
+ cd 1d.coeffs && mkdir 1d.cube.size7
+ cd 1d.coeffs && mkdir 1d.cube.order1.smooth0
+ cd 1d.coeffs && mkdir 1d.cube.order2.smooth0
+ cd 1d.coeffs && mkdir 1d.cube.order3.smooth0
+ cd 1d.coeffs && mkdir 1d.cube.order4.smooth0
+ cd 1d.coeffs && mkdir 1d.cube.order5.smooth0
+ cd 1d.coeffs && mkdir 1d.cube.order6.smooth0
+ cat util.maple interpolate.maple 1d.maple \
+ | maple 2>&1 >1d.log
+
+.PHONY : 2d
+2d :
+ -rm -rf 2d.coeffs
+ mkdir 2d.coeffs
+ cd 2d.coeffs && mkdir 2d.cube.size2
+ cd 2d.coeffs && mkdir 2d.cube.size3
+ cd 2d.coeffs && mkdir 2d.cube.size4
+ cd 2d.coeffs && mkdir 2d.cube.size5
+ cd 2d.coeffs && mkdir 2d.cube.order1.smooth0
+ cd 2d.coeffs && mkdir 2d.cube.order2.smooth0
+ cd 2d.coeffs && mkdir 2d.cube.order3.smooth0
+ cd 2d.coeffs && mkdir 2d.cube.order4.smooth0
+ cat util.maple interpolate.maple 2d.maple \
+ | maple 2>&1 >2d.log
+
+.PHONY : 3d
+3d :
+ -rm -rf 3d.coeffs
+ mkdir 3d.coeffs
+ cd 3d.coeffs && mkdir 3d.cube.size2
+ cd 3d.coeffs && mkdir 3d.cube.size3
+ cd 3d.coeffs && mkdir 3d.cube.size4
+ cd 3d.coeffs && mkdir 3d.cube.size5
+ cd 3d.coeffs && mkdir 3d.cube.order1.smooth0
+ cd 3d.coeffs && mkdir 3d.cube.order2.smooth0
+ cd 3d.coeffs && mkdir 3d.cube.order3.smooth0
+ cd 3d.coeffs && mkdir 3d.cube.order4.smooth0
+ cat util.maple interpolate.maple 3d.maple \
+ | maple 2>&1 >3d.log
+
+########################################
+
+#
+# standalone test programs
+#
+
+# FIXME: this doesn't build properly!
+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 \
+ -DLOCALINTERP_STANDALONE_BUILD -o test_molecule_posn \
+ test_molecule_posn.c molecule_posn.c -lm
+