From f4e58e6b730fa687890e47aefcb4a9b833a2d3a8 Mon Sep 17 00:00:00 2001 From: Patrick Williams Date: Fri, 12 Aug 2016 21:57:52 -0500 Subject: Add bootstrap.sh Change-Id: Id01b9ad969f96b0f79623ad9cf2a06f6714a07b1 Signed-off-by: Patrick Williams --- bootstrap.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 bootstrap.sh (limited to 'bootstrap.sh') diff --git a/bootstrap.sh b/bootstrap.sh new file mode 100755 index 0000000..4501fb1 --- /dev/null +++ b/bootstrap.sh @@ -0,0 +1,16 @@ +#!/bin/sh + +AUTOCONF_FILES="Makefile.in aclocal.m4 ar-lib autom4te.cache compile config.* \ + configure depcomp install-sh ltmain.sh missing *libtool" + +case $1 in + clean) + test -f Makefile && make maintainer-clean + rm -rf ${AUTOCONF_FILES} + + exit 0 + ;; +esac + +autoreconf -i +echo 'Run "./configure ${CONFIGURE_FLAGS} && make"' -- cgit v1.2.1