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 /vendor/voclient/libvotable/mkbase | |
download | iraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz |
Initial commit
Diffstat (limited to 'vendor/voclient/libvotable/mkbase')
-rwxr-xr-x | vendor/voclient/libvotable/mkbase | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/vendor/voclient/libvotable/mkbase b/vendor/voclient/libvotable/mkbase new file mode 100755 index 00000000..2028c751 --- /dev/null +++ b/vendor/voclient/libvotable/mkbase @@ -0,0 +1,11 @@ +#!/bin/csh -f +# +# MKBASE -- Create the base library. + +if (-e ../common/expat/.libs/libexpat.a) then + cp ../common/expat/.libs/libexpat.a $1 + +else + (cd ../common ; make expat) + cp ../common/expat/.libs/libexpat.a $1 +endif |