blob: 2028c75193ac330549af453d8755c6b00a264394 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
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
|