1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-04 05:50:26 +02:00
guile/configure.in
Jim Blandy 2f38f6196b * Makefile.am: Omit doc subtree.
* configure.in: Omit makefiles in doc subtree.
* Makefile.in, configure, doc/Makefile.in,
doc/guile-programmer/Makefile.in, doc/guile-user/Makefile.in,
newdoc/Makefile.in, newdoc/tutorial/Makefile.in: Rebuilt.
1997-04-05 21:51:21 +00:00

28 lines
862 B
Text

dnl Process this file with autoconf to produce configure.
AC_INIT(Makefile.in)
. $srcdir/GUILE-VERSION
AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
AM_MAINTAINER_MODE
dnl FIXME: tsort, xargs not GNU standard.
all_subdirs=`cat $srcdir/*/PLUGIN/REQ $srcdir/*/PLUGIN/OPT /dev/null | tsort | xargs echo`
req_subdirs=`cat $srcdir/*/PLUGIN/REQ /dev/null | tsort | xargs echo`
opt_subdirs=`cat $srcdir/*/PLUGIN/OPT /dev/null | tsort | xargs echo`
AC_CONFIG_SUBDIRS($all_subdirs)
for d in $all_subdirs; do
if test -d $srcdir/$d ; then
existingdirs="$existingdirs $d"
test -n "$silent" || echo Configuring plug-in component $d
fi
done
for d in $req_subdirs; do
test -d $srcdir/$d || {
echo ERROR: Missing required package: $d 1>&2
exit 1
}
done
AC_SUBST(existingdirs)
AC_OUTPUT(Makefile newdoc/Makefile newdoc/ref/Makefile newdoc/tutorial/Makefile)