-
Notifications
You must be signed in to change notification settings - Fork 14
/
autogen.sh
executable file
·61 lines (56 loc) · 1.93 KB
/
autogen.sh
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
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/bin/sh
#
#******************************************************************************
# autogen.sh (Seq66)
#------------------------------------------------------------------------------
##
# \file autogen.sh
# \library Seq66
# \author Chris Ahlstrom
# \date 2024-01-12
# \update 2024-01-13
# \version $Revision$
# \license Whatever
#
# Use this script in any manner whatsoever. You don't even need to give
# me any credit. However, keep in mind the value of the GPL in keeping
# software and its descendant modifications available to the community for
# all time. Uses basic shell commands instead of bashisms.
#
#------------------------------------------------------------------------------
aclocal -I m4 --install
if test $? = 0 ; then
echo "aclocal finished"
autoconf
if test $? = 0 ; then
echo "autoconf finished"
autoheader
if test $? = 0 ; then
echo "autoheader finished"
libtoolize --automake --force --copy
if test $? = 0 ; then
echo "libtoolize finished"
automake --foreign --add-missing --copy
if test $? = 0 ; then
echo "automake finished"
else
echo "automake failed; is it installed?"
fi
else
echo "libtoolize failed; is it installed?"
fi
else
echo "autoheader failed"
fi
else
echo "autoconf failed; is autoconf installed?"
fi
else
echo "aclocal failed; are autoconf and autoconf-archive installed?"
fi
echo "If all steps succeeded, run ./configure with desired parameters."
#******************************************************************************
# autogen.sh (Seq66)
#------------------------------------------------------------------------------
# vim: ts=3 sw=3 wm=4 et ft=sh
#------------------------------------------------------------------------------