diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
commit | fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch) | |
tree | bdda434976bc09c864f2e4fa6f16ba1952b1e555 /pkg/dataio/mkpkg | |
download | iraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz |
Initial commit
Diffstat (limited to 'pkg/dataio/mkpkg')
-rw-r--r-- | pkg/dataio/mkpkg | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/pkg/dataio/mkpkg b/pkg/dataio/mkpkg new file mode 100644 index 00000000..bba288df --- /dev/null +++ b/pkg/dataio/mkpkg @@ -0,0 +1,33 @@ +# Make the DATAIO package + +$call relink +$exit + +update: + $call relink + $call install + ; + +relink: + $set LIBS = "-lxtools" + $update libpkg.a + $omake x_dataio.x + $link x_dataio.o libpkg.a $(LIBS) -o xx_dataio.e + ; + +install: + $move xx_dataio.e bin$x_dataio.e + ; + +libpkg.a: + @lib + @export + @import + @imtext + @reblock + @fits + @bintext + @mtexamine + @cardimage + @t2d + ; |