-
Notifications
You must be signed in to change notification settings - Fork 9
/
bootstrap
executable file
·48 lines (47 loc) · 1.78 KB
/
bootstrap
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
47
48
#!/bin/sh
#
# $Header: $
#--------------------------------------------------------------------------------
# Copyright (c) 2008, Lawrence Livermore National Security, LLC. Produced at
# the Lawrence Livermore National Laboratory. Written by Dong H. Ahn <[email protected]>.
# LLNL-CODE-409469. All rights reserved.
#
# This file is part of LaunchMON. For details, see
# https://computing.llnl.gov/?set=resources&page=os_projects
#
# Please also read LICENSE.txt -- Our Notice and GNU Lesser General Public License.
#
#
# This program is free software; you can redistribute it and/or modify it under the
# terms of the GNU General Public License (as published by the Free Software
# Foundation) version 2.1 dated February 1999.
#
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the IMPLIED WARRANTY OF MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the terms and conditions of the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License along
# with this program; if not, write to the Free Software Foundation, Inc., 59 Temple
# Place, Suite 330, Boston, MA 02111-1307 USA
#--------------------------------------------------------------------------------
#
# Update Log:
# Apr 28 2016 DHA: Added debug prints
# Mar 11 2008 DHA: Added rm -f tools/libgcrypt/Makefile
# Jun 06 2008 DHA: Created file.
#
echo "Running aclocal ..."
aclocal -I config
echo "Running libtoolize ..."
libtoolize --force --copy
echo "Running autoheader ..."
autoheader
echo "Running automake ..."
touch NEWS README AUTHORS ChangeLog
automake --add-missing --copy
echo "Running autoconf ..."
autoconf
mv aclocal.m4 config/
rm -rf autom4te.cache tools/libgcrypt/Makefile
echo "Now run ./configure."