diff options
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 |