aboutsummaryrefslogtreecommitdiff
path: root/src/GeneralizedPolynomial-Uniform/common/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/common/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/common/makefile')
-rw-r--r--src/GeneralizedPolynomial-Uniform/common/makefile64
1 files changed, 0 insertions, 64 deletions
diff --git a/src/GeneralizedPolynomial-Uniform/common/makefile b/src/GeneralizedPolynomial-Uniform/common/makefile
deleted file mode 100644
index 03b634d..0000000
--- a/src/GeneralizedPolynomial-Uniform/common/makefile
+++ /dev/null
@@ -1,64 +0,0 @@
-#
-# main targets: rebuild machine-generated coefficient files
-#
-
-default : 1d 2d 3d
-dirs : 1d.dirs 2d.dirs 3d.dirs
-
-.PHONY : 1d
-1d :
- -rm -f 1d.cube.size*/*.c 1d.cube.size*/*.h
- cat ../util.maple ../interpolate.maple \
- cube_posns.maple 1d.maple \
- | maple 2>&1 >1d.log
-
-.PHONY : 2d
-2d :
- -rm -f 2d.cube.size*/*.c 2d.cube.size*/*.h
- cat ../util.maple ../interpolate.maple \
- cube_posns.maple 2d.maple \
- | maple 2>&2 >2d.log
-
-.PHONY : 3d
-3d :
- -rm -f 3d.cube.size*/*.c 3d.cube.size*/*.h
- cat ../util.maple ../interpolate.maple \
- cube_posns.maple 3d.maple \
- | maple 2>&2 >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.cube.size*
- mkdir 1d.cube.size2
- mkdir 1d.cube.size3
- mkdir 1d.cube.size4
- mkdir 1d.cube.size5
- mkdir 1d.cube.size6
- mkdir 1d.cube.size7
-
-.PHONY : 2d.dirs
-2d.dirs:
- -rm -rf 2d.cube.size*
- mkdir 2d.cube.size2
- mkdir 2d.cube.size3
- mkdir 2d.cube.size4
- mkdir 2d.cube.size5
- mkdir 2d.cube.size6
-
-.PHONY : 3d.dirs
-3d.dirs:
- -rm -rf 3d.cube.size*
- mkdir 3d.cube.size2
- mkdir 3d.cube.size3
- mkdir 3d.cube.size4
- mkdir 3d.cube.size5
- mkdir 3d.cube.size6