Súbor: [Platon] / libplaton / rebuild (stiahnutie)
Revízia 1.2, Tue Jan 6 17:05:45 2004 UTC (20 years, 9 months ago) by nepto
Zmeny od 1.1: +0 -1
[lines]
Fixed our well-known CFLAGS problem.
|
#!/bin/sh
echo
echo "===================================="
echo "This script is for maintainers only!"
echo "===================================="
echo
rm -f config.h configure config.cache aclocal.m4 config.log stamp-h*
# remove all Makefiles
#rm -f Makefile platon/Makefile doc/Makefile
find . -depth -name Makefile -exec rm -f {} \;
find . -depth -type d -name .deps -exec rm -rf {} \;
#rm -f doc/Doxyfile
rm -f lib*.so lib*.a *.o
echo running autoheader && autoheader && \
echo running aclocal && aclocal && \
echo running autoconf && autoconf && \
echo running ./configure && \
./configure $* && \
make clean && \
make && \
make documentation
echo
echo "===================================="
echo "This script is for maintainers only!"
echo "===================================="
echo
Platon Group <platon@platon.sk> http://platon.sk/
|