-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5d6b964
commit 786ab8a
Showing
9 changed files
with
243 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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 | ||
#------------------------------------------------------------------------------ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.