summaryrefslogtreecommitdiffstats
path: root/hgcompile
diff options
context:
space:
mode:
Diffstat (limited to 'hgcompile')
-rwxr-xr-xhgcompile17
1 files changed, 0 insertions, 17 deletions
diff --git a/hgcompile b/hgcompile
deleted file mode 100755
index 484a400..0000000
--- a/hgcompile
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/bash
-
-touch ltconfig
-libtoolize --force --copy --automake
-aclocal $ACLOCAL_FLAGS
-autoheader
-automake --foreign --copy --add-missing
-touch depcomp # seems to be missing for old automake
-autoconf
-export CFLAGS='-O2 -Wall -W -pipe -g'
-echo "CFLAGS=$CFLAGS"
-echo "./configure $@"
-./configure $@ || exit 1
-unset CFLAGS
-if [ -z "$HGCOMPILE_NO_MAKE" ]; then
- make
-fi