mirror of https://github.com/fltk/fltk.git
FLTK - Fast Light Tool Kit - https://github.com/fltk/fltk - cross platform GUI development
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.
16 lines
445 B
16 lines
445 B
#! /bin/sh |
|
|
|
srcdir=`dirname $0` |
|
test -z "$srcdir" && srcdir=. |
|
srcdir=`cd $srcdir && pwd` |
|
|
|
ORIGDIR=`pwd` |
|
cd $srcdir |
|
|
|
autoconf --force || exit 1 |
|
automake --add-missing |
|
if test ! -e config.sub; then echo NOTE: Using frozen copy of config.sub; cp misc/config.sub . ; fi |
|
if test ! -e config.guess; then echo NOTE: Using frozen copy of config.guess; cp misc/config.guess . ; fi |
|
cd $ORIGDIR || exit $? |
|
|
|
test -n "$NOCONFIGURE" || $srcdir/configure "$@"
|
|
|