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