fix 'make dist', works now (besides ParadisEO).
This commit is contained in:
parent
de69e235f4
commit
5150bd4888
12 changed files with 79 additions and 85 deletions
|
|
@ -4,18 +4,18 @@
|
|||
##
|
||||
###############################################################################
|
||||
|
||||
LIBEO = $(top_builddir)/src/libeo.a
|
||||
LIBEOUTILS = $(top_builddir)/src/utils/libeoutils.a
|
||||
LIBES = $(top_builddir)/src/es/libes.a
|
||||
LIBGA = $(top_builddir)/src/ga/libga.a
|
||||
LIBEO = $(top_builddir)/src/libeo.a
|
||||
LIBEOUTILS = $(top_builddir)/src/utils/libeoutils.a
|
||||
LIBES = $(top_builddir)/src/es/libes.a
|
||||
LIBGA = $(top_builddir)/src/ga/libga.a
|
||||
|
||||
AM_CXXFLAGS = -g -Wall -I$(top_srcdir)/src
|
||||
AM_CXXFLAGS = -g -Wall -I$(top_srcdir)/src
|
||||
|
||||
CLEANFILES = *~ *.sav *.status monitor.csv t-eoRandom.out
|
||||
CLEANFILES = monitor.csv t-eoRandom.out
|
||||
|
||||
DEPS = $(LIBGA) $(LIBES) $(LIBEO) $(LIBEOUTILS)
|
||||
DEPS = $(LIBGA) $(LIBES) $(LIBEO) $(LIBEOUTILS)
|
||||
|
||||
LDADD = $(DEPS)
|
||||
LIBS = $(DEPS)
|
||||
|
||||
|
||||
|
||||
|
|
@ -35,30 +35,33 @@ TESTS=$(check_PROGRAMS) run_tests
|
|||
# Specify source-files,
|
||||
# otherwise automake/make looks for C sources
|
||||
#
|
||||
t_eoRandom_SOURCES = t-eoRandom.cpp
|
||||
t_eofitness_SOURCES = t-eofitness.cpp
|
||||
t_eoFitnessAssembledEA_SOURCES = t-eoFitnessAssembledEA.cpp
|
||||
t_eobin_SOURCES = t-eobin.cpp binary_value.h
|
||||
t_eoVirus_SOURCES = t-eoVirus.cpp binary_value.h
|
||||
t_MGE1bit_SOURCES = t-MGE1bit.cpp binary_value.h
|
||||
t_MGE_SOURCES = t-MGE.cpp binary_value.h
|
||||
t_MGE_control_SOURCES = t-MGE-control.cpp binary_value.h
|
||||
t_eoStateAndParser_SOURCES = t-eoStateAndParser.cpp
|
||||
t_eoCheckpointing_SOURCES = t-eoCheckpointing.cpp
|
||||
t_eoReplacement_SOURCES = t-eoReplacement.cpp
|
||||
t_eoSelect_SOURCES = t-eoSelect.cpp
|
||||
t_eoExternalEO_SOURCES = t-eoExternalEO.cpp
|
||||
t_eoSymreg_SOURCES = t-eoSymreg.cpp
|
||||
t_eo_SOURCES = t-eo.cpp
|
||||
t_eoGenOp_SOURCES = t-eoGenOp.cpp
|
||||
t_eoVector_SOURCES = t-eoVector.cpp
|
||||
t_eoGA_SOURCES = t-eoGA.cpp binary_value.h
|
||||
t_eoReal_SOURCES = t-eoReal.cpp real_value.h
|
||||
t_eoESAll_SOURCES = t-eoESAll.cpp real_value.h
|
||||
t_eoSSGA_SOURCES = t-eoSSGA.cpp binary_value.h
|
||||
t_eoPareto_SOURCES = t-eoPareto.cpp
|
||||
t_eoParetoFitness_SOURCES = t-eoParetoFitness.cpp
|
||||
t_eoPBIL_SOURCES = t-eoPBIL.cpp
|
||||
t_eoFitnessAssembled_SOURCES = t-eoFitnessAssembled.cpp
|
||||
t_eoRoulette_SOURCES = t-eoRoulette.cpp
|
||||
t_eoSharing_SOURCES = t-eoSharing.cpp
|
||||
t_eoRandom_SOURCES = t-eoRandom.cpp
|
||||
t_eofitness_SOURCES = t-eofitness.cpp
|
||||
t_eoFitnessAssembledEA_SOURCES = t-eoFitnessAssembledEA.cpp
|
||||
t_eobin_SOURCES = t-eobin.cpp binary_value.h
|
||||
t_eoVirus_SOURCES = t-eoVirus.cpp binary_value.h
|
||||
t_MGE1bit_SOURCES = t-MGE1bit.cpp binary_value.h
|
||||
t_MGE_SOURCES = t-MGE.cpp binary_value.h
|
||||
t_MGE_control_SOURCES = t-MGE-control.cpp binary_value.h
|
||||
t_eoStateAndParser_SOURCES = t-eoStateAndParser.cpp
|
||||
t_eoCheckpointing_SOURCES = t-eoCheckpointing.cpp
|
||||
t_eoReplacement_SOURCES = t-eoReplacement.cpp
|
||||
t_eoSelect_SOURCES = t-eoSelect.cpp
|
||||
t_eoExternalEO_SOURCES = t-eoExternalEO.cpp
|
||||
t_eoSymreg_SOURCES = t-eoSymreg.cpp
|
||||
t_eo_SOURCES = t-eo.cpp
|
||||
t_eoGenOp_SOURCES = t-eoGenOp.cpp
|
||||
t_eoVector_SOURCES = t-eoVector.cpp
|
||||
t_eoGA_SOURCES = t-eoGA.cpp binary_value.h
|
||||
t_eoReal_SOURCES = t-eoReal.cpp real_value.h
|
||||
t_eoESAll_SOURCES = t-eoESAll.cpp real_value.h
|
||||
t_eoSSGA_SOURCES = t-eoSSGA.cpp binary_value.h
|
||||
t_eoPareto_SOURCES = t-eoPareto.cpp
|
||||
t_eoParetoFitness_SOURCES = t-eoParetoFitness.cpp
|
||||
t_eoPBIL_SOURCES = t-eoPBIL.cpp
|
||||
t_eoFitnessAssembled_SOURCES = t-eoFitnessAssembled.cpp
|
||||
t_eoRoulette_SOURCES = t-eoRoulette.cpp
|
||||
t_eoSharing_SOURCES = t-eoSharing.cpp
|
||||
|
||||
# extra flags for specific targets
|
||||
t_eoVirus_CXXFLAGS = -I$(top_srcdir)/contrib
|
||||
|
|
|
|||
Reference in a new issue