added new multi-objective support

This commit is contained in:
maartenkeijzer 2007-08-31 10:57:05 +00:00
commit 553586d55f
12 changed files with 1049 additions and 9 deletions

View file

@ -1,8 +1,8 @@
dnl Process this file with autoconf to produce a configure script.
dnl
dnl Change the version number here
AC_INIT([Evolving Objects], [1.02-cvs1], [eodev-help@sourceforge.net], [eo])
AC_PREREQ(2.53)
AC_INIT([Evolving Objects],[1.02-cvs1],[eodev-help@sourceforge.net],[eo])
AC_PREREQ(2.60)
dnl make sure we are compiling from the correct sources
AC_CONFIG_SRCDIR(src/eoOp.h)
@ -14,7 +14,7 @@ AC_CANONICAL_TARGET
dnl automake initialization
AM_INIT_AUTOMAKE([gnu dist-bzip2 dist-zip])
AM_CONFIG_HEADER(config.h)
AC_CONFIG_HEADERS([config.h])
dnl Checks for programs.
AC_PROG_CC
@ -45,7 +45,7 @@ AC_GNUPLOT
AC_TUTORIAL
dnl create makefiles
AC_OUTPUT(Makefile \
AC_CONFIG_FILES([Makefile \
app/Makefile \
app/mastermind/Makefile \
app/gprop/Makefile \
@ -59,6 +59,7 @@ AC_OUTPUT(Makefile \
src/ga/Makefile \
src/other/Makefile \
src/utils/Makefile \
src/moo/Makefile \
test/Makefile \
tutorial/Makefile \
tutorial/html/Makefile \
@ -69,4 +70,5 @@ AC_OUTPUT(Makefile \
tutorial/Lesson5/Makefile \
tutorial/Templates/Makefile \
tutorial/pdf/Makefile \
win/Makefile)
win/Makefile])
AC_OUTPUT