aboutsummaryrefslogtreecommitdiff
path: root/src/GeneralizedPolynomial-Uniform/Lagrange-maximum-degree/makefile
diff options
context:
space:
mode:
authorjthorn <jthorn@df1f8a13-aa1d-4dd4-9681-27ded5b42416>2003-07-06 11:39:36 +0000
committerjthorn <jthorn@df1f8a13-aa1d-4dd4-9681-27ded5b42416>2003-07-06 11:39:36 +0000
commite9f00ac8be804694fed90fee6dfaa45f9438ebb8 (patch)
tree751937dea2db230245a372c7fc9d1e878352a2e8 /src/GeneralizedPolynomial-Uniform/Lagrange-maximum-degree/makefile
parentdcba423b1b91d1b9dc3a4e7c3ac7812e30f1f00c (diff)
Remove Jonathan Thornburg's interpolator
(which is GPL and thus not allowed to be in CactusBase; it now lives in AEIThorns/AEILocalInterp/) so this thorn contains only the interpolator written by Thomas Radke in early 2001. The files for this interpolator are now in src/ ; before this commit they were in src/UniformCartesian/ . git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/LocalInterp/trunk@154 df1f8a13-aa1d-4dd4-9681-27ded5b42416
Diffstat (limited to 'src/GeneralizedPolynomial-Uniform/Lagrange-maximum-degree/makefile')
-rw-r--r--src/GeneralizedPolynomial-Uniform/Lagrange-maximum-degree/makefile72
1 files changed, 0 insertions, 72 deletions
diff --git a/src/GeneralizedPolynomial-Uniform/Lagrange-maximum-degree/makefile b/src/GeneralizedPolynomial-Uniform/Lagrange-maximum-degree/makefile
deleted file mode 100644
index c36a42f..0000000
--- a/src/GeneralizedPolynomial-Uniform/Lagrange-maximum-degree/makefile
+++ /dev/null
@@ -1,72 +0,0 @@
-# $Header: /mnt/data2/cvs2svn/cvs-repositories/arrangements/CactusBase/LocalInterp/src/GeneralizedPolynomial-Uniform/Lagrange-maximum-degree/makefile,v 1.1 2003-04-15 17:12:54 jthorn Exp $
-
-.PHONY : no-default-target
-no-default-target:
- @echo 'there is (deliberately) no default target in this makefile,'
- @echo 'because (re)generating all the coefficients is quite slow :('
- @echo '==> see the makefile to find out about explicit targets'
-
-#
-# main targets: rebuild machine-generated coefficient files
-#
-
-.PHONY : 1d
-1d :
- -rm -f 1d.coeffs/*/*.c
- cat ../util.maple ../interpolate.maple \
- ../common/cube_posns.maple fns.maple 1d.maple \
- | maple 2>&1 >1d.log
-
-# with Maple 7, this takes about 15 seconds on a 1.7GHz P4
-.PHONY : 2d
-2d :
- -rm -f 2d.coeffs/*/*.c
- cat ../util.maple ../interpolate.maple \
- ../common/cube_posns.maple fns.maple 2d.maple \
- | maple 2>&1 >2d.log
-
-# with Maple 7, this takes about 8 to 9 minutes on a 1.7GHz P4
-.PHONY : 3d
-3d :
- -rm -f 3d.coeffs/*/*.c
- cat ../util.maple ../interpolate.maple \
- ../common/cube_posns.maple fns.maple 3d.maple \
- | maple 2>&1 >3d.log
-
-################################################################################
-
-#
-# targets to initially create directories for machine-generated coefficients
-# these only need to be run if you're setting up a new interpolator,
-# i.e. if you don't already have the directories in cvs
-# (you still have to add them to cvs by hand)
-#
-
-.PHONY : 1d.dirs
-1d.dirs:
- -rm -rf 1d.coeffs
- mkdir 1d.coeffs
- 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
-
-.PHONY : 2d.dirs
-2d.dirs:
- -rm -rf 2d.coeffs
- mkdir 2d.coeffs
- 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
-
-.PHONY : 3d.dirs
-3d.dirs:
- -rm -rf 3d.coeffs
- mkdir 3d.coeffs
- 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