diff options
author | Vishwanatha Subbanna <vishwa@linux.vnet.ibm.com> | 2017-09-06 11:29:37 +0530 |
---|---|---|
committer | Vishwanatha Subbanna <vishwa@linux.vnet.ibm.com> | 2017-09-06 11:29:37 +0530 |
commit | 8a89b53bf014d0844dfd85b2327853037d1e2cb7 (patch) | |
tree | 9b613a35dd16903007935b1b3d6c9b5c77a3506e /bootstrap.sh | |
parent | f3dfd3221245d2f398a10c36c3afe88a11df11f3 (diff) | |
download | phosphor-user-manager-8a89b53bf014d0844dfd85b2327853037d1e2cb7.tar.gz phosphor-user-manager-8a89b53bf014d0844dfd85b2327853037d1e2cb7.zip |
Put initial skeleton code of user manager
Change-Id: I4f95a8baf9348d9ed9b7e8b6b53a7a4e538b045e
Signed-off-by: Vishwanatha Subbanna <vishwa@linux.vnet.ibm.com>
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-x | bootstrap.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/bootstrap.sh b/bootstrap.sh new file mode 100755 index 0000000..50b75b7 --- /dev/null +++ b/bootstrap.sh @@ -0,0 +1,18 @@ +#!/bin/sh + +AUTOCONF_FILES="Makefile.in aclocal.m4 ar-lib autom4te.cache compile \ + config.guess config.h.in config.sub configure depcomp install-sh \ + ltmain.sh missing *libtool test-driver" + +case $1 in + clean) + test -f Makefile && make maintainer-clean + for file in ${AUTOCONF_FILES}; do + find -name "$file" | xargs -r rm -rf + done + exit 0 + ;; +esac + +autoreconf -i +echo 'Run "./configure ${CONFIGURE_FLAGS} && make"' |