Official mirror of https://gitlab.freedesktop.org/freetype/freetype
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
432 B
22 lines
432 B
#!/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
|
|
|