https://github.com/behdad/glyphy
Raw File
Tip revision: 68a5f8d8ae64e0158d776b21581d0ecb70ec8304 authored by Brad Erickson on 04 July 2023, 18:36:52 UTC
Add Github Actions CI Workflow to build/test on Ubuntu 22.04
Tip revision: 68a5f8d
autogen.sh
#!/bin/sh
# Run this to generate all the initial makefiles, etc.

test -n "$srcdir" || srcdir=`dirname "$0"`
test -n "$srcdir" || srcdir=.

olddir=`pwd`
cd $srcdir

echo -n "checking for pkg-config... "
which pkg-config || {
	echo "*** No pkg-config found, please install it ***"
	exit 1
}

echo -n "checking for autoreconf... "
which autoreconf || {
	echo "*** No autoreconf found, please install it ***"
	exit 1
}

touch ChangeLog

echo "running autoreconf --force --install --verbose"
autoreconf --force --install --verbose || exit $?

cd $olddir
echo "running configure $@"
test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"
back to top