don't use user-variables
This commit is contained in:
parent
9e508c66a6
commit
5e416e4a1c
4 changed files with 79 additions and 83 deletions
|
|
@ -39,23 +39,9 @@ autoconf
|
||||||
# we want doc to be recompiled - and it keeps saying it's up to date!!!
|
# we want doc to be recompiled - and it keeps saying it's up to date!!!
|
||||||
touch doc/eo.cfg
|
touch doc/eo.cfg
|
||||||
|
|
||||||
|
|
||||||
# if test -z "$*"; then
|
|
||||||
# echo "I am going to run ./configure with no arguments - if you wish"
|
|
||||||
# echo "to pass any to it, please specify them on the $0 command line."
|
|
||||||
# fi
|
|
||||||
#
|
|
||||||
# ./configure "$@"
|
|
||||||
|
|
||||||
echo
|
echo
|
||||||
echo "Now run 'configure' and 'make' to build $PROG."
|
echo "Now run 'configure' and 'make' to build $PROG."
|
||||||
echo "You can check the libraries by running 'make check'"
|
echo "You can check the libraries by running 'make check'"
|
||||||
echo
|
echo
|
||||||
echo "If you have Doxygen installed, type 'make doc' to generate $PROG documentation."
|
echo "If you have Doxygen installed, type 'make doc' to generate $PROG documentation."
|
||||||
echo
|
echo
|
||||||
|
|
||||||
#echo "WARNING: Compiling all test programs can take some time."
|
|
||||||
#echo "But you don't have to: you can simply type"
|
|
||||||
#echo " 'make lib'"
|
|
||||||
#echo "and then go in your application dir (or in the tutorial dir)"
|
|
||||||
#echo "and there type 'make'"
|
|
||||||
|
|
|
||||||
|
|
@ -4,44 +4,46 @@
|
||||||
##
|
##
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
INCLUDES = -I$(top_builddir)/src -I$(top_srcdir)/src
|
AM_CXXFLAGS = -I$(top_srcdir)/src
|
||||||
lib_LIBRARIES = libes.a
|
|
||||||
libes_a_SOURCES = make_algo_scalar_es.cpp \
|
|
||||||
make_algo_scalar_real.cpp \
|
|
||||||
make_checkpoint_es.cpp \
|
|
||||||
make_checkpoint_real.cpp \
|
|
||||||
make_continue_es.cpp \
|
|
||||||
make_continue_real.cpp \
|
|
||||||
make_genotype_es.cpp \
|
|
||||||
make_genotype_real.cpp \
|
|
||||||
make_op_es.cpp \
|
|
||||||
make_op_real.cpp \
|
|
||||||
make_pop_es.cpp \
|
|
||||||
make_pop_real.cpp \
|
|
||||||
make_run_es.cpp \
|
|
||||||
make_run_real.cpp
|
|
||||||
|
|
||||||
CPPFLAGS = -Wall
|
|
||||||
CXXFLAGS =
|
lib_LIBRARIES = libes.a
|
||||||
libeoincdir = $(includedir)/eo/es
|
|
||||||
libeoinc_HEADERS = eoEsChromInit.h \
|
libes_a_SOURCES = make_algo_scalar_es.cpp \
|
||||||
eoEsFull.h \
|
make_algo_scalar_real.cpp \
|
||||||
eoEsGlobalXover.h \
|
make_checkpoint_es.cpp \
|
||||||
eoEsMutate.h \
|
make_checkpoint_real.cpp \
|
||||||
eoEsMutationInit.h \
|
make_continue_es.cpp \
|
||||||
eoEsSimple.h \
|
make_continue_real.cpp \
|
||||||
eoEsStandardXover.h \
|
make_genotype_es.cpp \
|
||||||
eoEsStdev.h \
|
make_genotype_real.cpp \
|
||||||
eoNormalMutation.h \
|
make_op_es.cpp \
|
||||||
eoRealAtomXover.h \
|
make_op_real.cpp \
|
||||||
eoReal.h \
|
make_pop_es.cpp \
|
||||||
eoRealInitBounded.h \
|
make_pop_real.cpp \
|
||||||
eoRealOp.h \
|
make_run_es.cpp \
|
||||||
eoSBXcross.h \
|
make_run_real.cpp
|
||||||
make_es.h \
|
|
||||||
make_genotype_real.h \
|
libeoincdir = $(includedir)/eo/es
|
||||||
make_op_es.h \
|
|
||||||
make_op.h \
|
libeoinc_HEADERS = eoEsChromInit.h \
|
||||||
make_op_real.h \
|
eoEsFull.h \
|
||||||
make_real.h
|
eoEsGlobalXover.h \
|
||||||
|
eoEsMutate.h \
|
||||||
|
eoEsMutationInit.h \
|
||||||
|
eoEsSimple.h \
|
||||||
|
eoEsStandardXover.h \
|
||||||
|
eoEsStdev.h \
|
||||||
|
eoNormalMutation.h \
|
||||||
|
eoRealAtomXover.h \
|
||||||
|
eoReal.h \
|
||||||
|
eoRealInitBounded.h \
|
||||||
|
eoRealOp.h \
|
||||||
|
eoSBXcross.h \
|
||||||
|
make_es.h \
|
||||||
|
make_genotype_real.h \
|
||||||
|
make_op_es.h \
|
||||||
|
make_op.h \
|
||||||
|
make_op_real.h \
|
||||||
|
make_real.h
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,28 +4,29 @@
|
||||||
##
|
##
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
INCLUDES = -I$(top_builddir)/src -I$(top_srcdir)/src
|
AM_CXXFLAGS = -I$(top_builddir)/src -I$(top_srcdir)/src
|
||||||
lib_LIBRARIES = libga.a
|
|
||||||
libga_a_SOURCES = make_algo_scalar_ga.cpp \
|
|
||||||
make_checkpoint_ga.cpp \
|
|
||||||
make_continue_ga.cpp \
|
|
||||||
make_genotype_ga.cpp \
|
|
||||||
make_op_ga.cpp \
|
|
||||||
make_pop_ga.cpp \
|
|
||||||
make_run_ga.cpp
|
|
||||||
|
|
||||||
CPPFLAGS = -Wall
|
lib_LIBRARIES = libga.a
|
||||||
CXXFLAGS =
|
|
||||||
libeoincdir = $(includedir)/eo/ga
|
libga_a_SOURCES = make_algo_scalar_ga.cpp \
|
||||||
libeoinc_HEADERS = eoBit.h \
|
make_checkpoint_ga.cpp \
|
||||||
eoBitOpFactory.h \
|
make_continue_ga.cpp \
|
||||||
eoBitOp.h \
|
make_genotype_ga.cpp \
|
||||||
eoBoolFlip.h \
|
make_op_ga.cpp \
|
||||||
eoPBILAdditive.h \
|
make_pop_ga.cpp \
|
||||||
eoPBILDistrib.h \
|
make_run_ga.cpp
|
||||||
eoPBILOrg.h \
|
|
||||||
make_ga.h \
|
libeoincdir = $(includedir)/eo/ga
|
||||||
make_genotype_ga.h \
|
|
||||||
make_op.h \
|
libeoinc_HEADERS = eoBit.h \
|
||||||
make_PBILdistrib.h \
|
eoBitOpFactory.h \
|
||||||
make_PBILupdate.h
|
eoBitOp.h \
|
||||||
|
eoBoolFlip.h \
|
||||||
|
eoPBILAdditive.h \
|
||||||
|
eoPBILDistrib.h \
|
||||||
|
eoPBILOrg.h \
|
||||||
|
make_ga.h \
|
||||||
|
make_genotype_ga.h \
|
||||||
|
make_op.h \
|
||||||
|
make_PBILdistrib.h \
|
||||||
|
make_PBILupdate.h
|
||||||
|
|
|
||||||
|
|
@ -4,14 +4,21 @@
|
||||||
##
|
##
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
INCLUDES = -I$(top_builddir)/src -I$(top_srcdir)/src
|
|
||||||
CPPFLAGS = -O2 -Wall
|
|
||||||
lib_LIBRARIES = libeoutils.a
|
lib_LIBRARIES = libeoutils.a
|
||||||
libeoutils_a_SOURCES = eoParser.cpp eoRNG.cpp eoState.cpp eoUpdater.cpp eoFileMonitor.cpp eoStdoutMonitor.cpp eoRealBounds.cpp make_help.cpp
|
|
||||||
|
|
||||||
libeoincdir = $(includedir)/eo/utils
|
|
||||||
libeoinc_HEADERS = checkpointing $(srcdir)/*.h
|
|
||||||
#compatibility.h eoCheckPoint.h eoData.h eoDistance.h eoFDCStat.h eoFileMonitor.h eoGnuplot1DMonitor.h eoGnuplot1DSnapshot.h eoHowMany.h eoMonitor.h eoParam.h eoParser.h eoRNG.h eoStat.h eoScalarFitnessStat.h eoState.h eoStdoutMonitor.h eoUpdatable.h eoUpdater.h rnd_generators.h eoRndGenerators.h selectors.h
|
|
||||||
|
|
||||||
|
|
||||||
|
AM_CXXFLAGS = -I$(top_srcdir)/src
|
||||||
|
|
||||||
|
|
||||||
|
libeoutils_a_SOURCES = eoParser.cpp \
|
||||||
|
eoRNG.cpp \
|
||||||
|
eoState.cpp \
|
||||||
|
eoUpdater.cpp \
|
||||||
|
eoFileMonitor.cpp \
|
||||||
|
eoStdoutMonitor.cpp \
|
||||||
|
eoRealBounds.cpp \
|
||||||
|
make_help.cpp
|
||||||
|
|
||||||
|
libeoincdir = $(includedir)/eo/utils
|
||||||
|
|
||||||
|
libeoinc_HEADERS = checkpointing $(srcdir)/*.h
|
||||||
|
|
|
||||||
Reference in a new issue