diff options
author | Joe Hunkeler <jhunkeler@gmail.com> | 2015-08-11 16:51:37 -0400 |
---|---|---|
committer | Joe Hunkeler <jhunkeler@gmail.com> | 2015-08-11 16:51:37 -0400 |
commit | 40e5a5811c6ffce9b0974e93cdd927cbcf60c157 (patch) | |
tree | 4464880c571602d54f6ae114729bf62a89518057 /pkg/images/mkpkg | |
download | iraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz |
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'pkg/images/mkpkg')
-rw-r--r-- | pkg/images/mkpkg | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/pkg/images/mkpkg b/pkg/images/mkpkg new file mode 100644 index 00000000..d6c6df18 --- /dev/null +++ b/pkg/images/mkpkg @@ -0,0 +1,33 @@ +# Make the IMAGES package + +$call relink +$exit + +update: + @tv + @immatch/src/imcombine/src/mkpkg + $call relink + $call install + ; + +relink: + $set LIBS1 = "-limc -lxtools -lcurfit -lsurfit -lgsurfit -liminterp" + $set LIBS2 = "-lnlfit -lslalib -lncar -lgks" + $update libpkg.a + $omake x_images.x + $link x_images.o libpkg.a $(LIBS1) $(LIBS2) -o xx_images.e + ; + +install: + $move xx_images.e bin$x_images.e + ; + +libpkg.a: + @imcoords + @imfilter + @imfit + @imgeom + @immatch + @imutil + @lib + ; |