aboutsummaryrefslogtreecommitdiff
path: root/pkg/proto/vol/src/im3dtran/mkpkg
diff options
context:
space:
mode:
authorJoe Hunkeler <jhunkeler@gmail.com>2015-08-11 16:51:37 -0400
committerJoe Hunkeler <jhunkeler@gmail.com>2015-08-11 16:51:37 -0400
commit40e5a5811c6ffce9b0974e93cdd927cbcf60c157 (patch)
tree4464880c571602d54f6ae114729bf62a89518057 /pkg/proto/vol/src/im3dtran/mkpkg
downloadiraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'pkg/proto/vol/src/im3dtran/mkpkg')
-rw-r--r--pkg/proto/vol/src/im3dtran/mkpkg52
1 files changed, 52 insertions, 0 deletions
diff --git a/pkg/proto/vol/src/im3dtran/mkpkg b/pkg/proto/vol/src/im3dtran/mkpkg
new file mode 100644
index 00000000..19b0b52d
--- /dev/null
+++ b/pkg/proto/vol/src/im3dtran/mkpkg
@@ -0,0 +1,52 @@
+# Library for the 3DTRANSPOSE task.
+
+$checkout libpkg.a /u2/rooke/vol/
+$update libpkg.a
+$checkin libpkg.a /u2/rooke/vol/
+$exit
+
+tfiles:
+ $ifolder (txyz3.x, txyz3.gx)
+ $generic -k txyz3.gx -o txyz3.x $endif
+ $ifolder (txzy3.x, txzy3.gx)
+ $generic -k txzy3.gx -o txzy3.x $endif
+ $ifolder (tyxz3.x, tyxz3.gx)
+ $generic -k tyxz3.gx -o tyxz3.x $endif
+ $ifolder (tyzx3.x, tyzx3.gx)
+ $generic -k tyzx3.gx -o tyzx3.x $endif
+ $ifolder (tzxy3.x, tzxy3.gx)
+ $generic -k tzxy3.gx -o tzxy3.x $endif
+ $ifolder (tzyx3.x, tzyx3.gx)
+ $generic -k tzyx3.gx -o tzyx3.x $endif
+ ;
+
+libpkg.a:
+ $ifeq (USE_GENERIC, yes) $call tfiles $endif
+
+ t_im3dtran.x <imhdr.h>
+ txyz3.x
+ txzy3.x
+ tyxz3.x
+ tyzx3.x
+ tzxy3.x
+ tzyx3.x
+ ;
+
+dbx:
+ $set XFLAGS = "-c -g -F -q"
+ $set LFLAGS = "-g -q"
+ $set LIBS = "-lxtools"
+
+ $ifeq (USE_GENERIC, yes) $call tfiles $endif
+
+ $omake x_im3dtran.x
+ $omake t_im3dtran.x
+ $omake txyz3.x
+ $omake txzy3.x
+ $omake tyxz3.x
+ $omake tyzx3.x
+ $omake tzxy3.x
+ $omake tzyx3.x
+ $link x_im3dtran.o t_im3dtran.o txyz3.o txzy3.o tyxz3.o tyzx3.o \
+ tzxy3.o tzyx3.o $(LIBS) -o xx_im3dtran.e
+ ;