eff41ee7f5
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18769 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
28 lines
780 B
Plaintext
28 lines
780 B
Plaintext
dnl Process this file with autoconf to produce a configure script.
|
|
AC_REVISION($Id$)dnl
|
|
|
|
AC_INIT(Makefile.in)
|
|
|
|
dnl we need the values the main configure determined for us, so refuse
|
|
dnl to run if we don't have them
|
|
dnl
|
|
dnl note that the only one we use here if wx_cv_if_gnu_make but we can't test
|
|
dnl for this because it may perfectly well be empty (if we're using GNU make),
|
|
dnl so use something else
|
|
if test "x$wx_cv_path_ifs" = "x"; then
|
|
AC_MSG_ERROR([Please run configure from the top level directory.])
|
|
fi
|
|
|
|
IF_GNU_MAKE=$wx_cv_if_gnu_make
|
|
AC_SUBST(IF_GNU_MAKE)
|
|
|
|
AC_OUTPUT([
|
|
Makefile
|
|
bombs/Makefile
|
|
dbbrowse/Makefile
|
|
forty/Makefile
|
|
fractal/Makefile
|
|
life/Makefile
|
|
poem/Makefile
|
|
])
|