summaryrefslogtreecommitdiffstats
path: root/autofoo-efl/autogen.sh
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2012-09-08 00:26:51 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2012-09-08 00:26:51 +0200
commitea927b1bb808b11df21d5adda4b8232fd2a6d859 (patch)
tree2dadf38efe470b36079e0a8792d35919741919c7 /autofoo-efl/autogen.sh
parentef4a9a658ef88934c1e9152d1d056cb95d0c2046 (diff)
downloadskeletons-ea927b1bb808b11df21d5adda4b8232fd2a6d859.zip
skeletons-ea927b1bb808b11df21d5adda4b8232fd2a6d859.tar.gz
add autofoo-efl first stepsHEADmaster
Diffstat (limited to 'autofoo-efl/autogen.sh')
-rwxr-xr-xautofoo-efl/autogen.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/autofoo-efl/autogen.sh b/autofoo-efl/autogen.sh
new file mode 100755
index 0000000..31ccda0
--- /dev/null
+++ b/autofoo-efl/autogen.sh
@@ -0,0 +1,16 @@
+#!/bin/sh
+
+rm -rf autom4te.cache
+rm -f aclocal.m4 ltmain.sh
+
+touch README
+
+echo "Running aclocal..." ; aclocal -I m4 $ACLOCAL_FLAGS || exit 1
+echo "Running autoheader..." ; autoheader || exit 1
+echo "Running autoconf..." ; autoconf || exit 1
+echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize --automake) || exit 1
+echo "Running automake..." ; automake --add-missing --copy --gnu || exit 1
+
+if [ -z "$NOCONFIGURE" ]; then
+ ./configure "$@"
+fi