forked from hightman/xunsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
acprep
executable file
·47 lines (43 loc) · 1.09 KB
/
acprep
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/bin/sh
# $Id: $
# This file is intended for developers only and is not included into dist
# Please RUN this AFTER cvs checkout/update
# This will re-create all needed stuff
# (aclocal.m4, config.h.in, Makefile.in, configure)
# or you may end up with old versions of that.
#
# libtoolize
LIBTOOLIZE=libtoolize
SYSNAME=`uname`
if [ "x$SYSNAME" = "xDarwin" ] ; then
LIBTOOLIZE=glibtoolize
fi
# clean
if test "x-$1" = "x---clean" ; then
echo "Cleaning ..."
if test -f Makefile ; then
make clean
fi
find . -name Makefile -exec rm -f {} \;
find . -name Makefile.in -exec rm -f {} \;
rm -f aclocal.m4 config.* configure depcomp install-sh missing stamp-h1
rm -rf autom4te.cache
rm -f README VERSION src/xs-ctl.sh src/xs-optimize.sh
echo "OK, done!"
exit
fi
# init
ln -sf README.md README
for cmd in aclocal autoheader \
"automake --add-missing --copy --force" autoconf ; do
echo "Running command: $cmd ..."
$cmd 2>&1 | grep -i -v warning
done
echo
echo "--==*** You can run ./configure now ***==--";
echo -n " Happy hacking";
if test -n $USER; then
echo -n ", $USER";
fi
echo !
echo