forked from minhngoc25a/freetype2
23 lines
432 B
Bash
23 lines
432 B
Bash
#!/bin/sh
|
|
#
|
|
# Call the 'configure' script located in 'builds/unix'.
|
|
#
|
|
# This should re-generate the following files:
|
|
#
|
|
# config.mk
|
|
# Jamfile
|
|
# install
|
|
#
|
|
|
|
if [ "x$GNUMAKE" = x ]; then
|
|
GNUMAKE=make
|
|
fi
|
|
|
|
if [ `$GNUMAKE -v 2>/dev/null|grep -ic gnu` -eq 0 ]; then
|
|
echo "Sorry, GNU make is required to build FreeType2." >&2
|
|
echo "Please try \`GNUMAKE=<GNU make command name> $0'." >&2
|
|
exit 1
|
|
fi
|
|
|
|
CFG="$@" $GNUMAKE setup unix
|