]> git.saurik.com Git - wxWidgets.git/blame_incremental - demos/configure.in
Added configtool to configure and Makefile.in
[wxWidgets.git] / demos / configure.in
... / ...
CommitLineData
1dnl Process this file with autoconf to produce a configure script.
2AC_REVISION($Id$)dnl
3
4AC_INIT(Makefile.in)
5
6dnl we need the values the main configure determined for us, so refuse
7dnl to run if we don't have them
8dnl
9dnl note that the only one we use here if wx_cv_if_gnu_make but we can't test
10dnl for this because it may perfectly well be empty (if we're using GNU make),
11dnl so use something else
12if test "x$wx_cv_path_ifs" = "x"; then
13 AC_MSG_ERROR([Please run configure from the top level directory.])
14fi
15
16IF_GNU_MAKE=$wx_cv_if_gnu_make
17AC_SUBST(IF_GNU_MAKE)
18
19AC_OUTPUT([
20 Makefile
21 bombs/Makefile
22 dbbrowse/Makefile
23 forty/Makefile
24 fractal/Makefile
25 life/Makefile
26 poem/Makefile
27 ])