17 lines
373 B
Plaintext
17 lines
373 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
cd $WRKSRC
|
||
|
|
||
|
# Move the all directory out of the way; it messes with the all target
|
||
|
if [ -e all ]; then
|
||
|
mv all xall
|
||
|
fi
|
||
|
|
||
|
# Copy the bmake files into place
|
||
|
install -c $FILESDIR/Makefile Makefile
|
||
|
install -c $FILESDIR/Makefile.inc Makefile.inc
|
||
|
|
||
|
for i in doc generic include lib nsgmls sgmlnorm spam spent; do
|
||
|
install -c $FILESDIR/$i-Makefile $i/Makefile
|
||
|
done
|