For the tutorial the old Makefiles are saved as Makefile.simple in all the respective directories. Use generated config.h instead of command-line passing of preprocessor flags. Updated support files from current automake.
25 lines
560 B
Makefile
25 lines
560 B
Makefile
###############################################################################
|
|
##
|
|
## Makefile.am for eo/src
|
|
##
|
|
###############################################################################
|
|
|
|
INCLUDES = -I$(top_srcdir)/src
|
|
|
|
SUBDIRS = es ga gp utils other do
|
|
|
|
CPPFLAGS = -O2
|
|
|
|
lib_LIBRARIES = libeo.a
|
|
|
|
libeo_a_SOURCES = eoFunctorStore.cpp \
|
|
eoPersistent.cpp \
|
|
eoPrintable.cpp \
|
|
eoCtrlCContinue.cpp \
|
|
eoParetoFitness.cpp \
|
|
eoScalarFitnessAssembled.cpp
|
|
|
|
libeoincdir = $(includedir)/eo
|
|
|
|
libeoinc_HEADERS = $(srcdir)/*.h $(srcdir)/eo $(srcdir)/do/*.h
|
|
|