This repository has been archived on 2026-03-28. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
eodev/eo/src/utils/Makefile.am
kuepper 47af7cfe5a Clean up configure/build-process.
- assume C++ standard-conforming environment
- add a user-option for gnuplot-support
- separate gnuplot-code into declaration and implementation,
  so we can define at EO-build-time whether to use it or not.

Adopt code and Makefiles to above changes.

Some minor fixes.
2005-10-02 21:42:08 +00:00

57 lines
1.1 KiB
Makefile

## Makefile.am for eo/src/utils
lib_LIBRARIES = libeoutils.a
libeoutils_a_SOURCES = eoData.cpp \
eoFileMonitor.cpp \
eoGnuplot.cpp \
eoGnuplot1DMonitor.cpp \
eoGnuplot1DSnapshot.cpp \
eoIntBounds.cpp \
eoParser.cpp \
eoRealBounds.cpp \
eoRNG.cpp \
eoState.cpp \
eoStdoutMonitor.cpp \
eoUpdater.cpp \
make_help.cpp \
pipecom.cpp
utilsincludedir = $(pkgincludedir)/utils
utilsinclude_HEADERS = checkpointing \
compatibility.h \
eoAssembledFitnessStat.h \
eoCheckPoint.h \
eoData.h \
eoDistance.h \
eoFDCStat.h \
eoFileMonitor.h \
eoFileSnapshot.h \
eoGnuplot.h \
eoGnuplot1DMonitor.h \
eoGnuplot1DSnapshot.h \
eoHowMany.h \
eoMOFitnessStat.h \
eoMonitor.h \
eoParam.h \
eoParser.h \
eoPopStat.h \
eoRNG.h \
eoRealBounds.h \
eoIntBounds.h \
eoRealVectorBounds.h \
eoRndGenerators.h \
eoScalarFitnessStat.h \
eoStat.h \
eoState.h \
eoStdoutMonitor.h \
eoTimeCounter.h \
eoUniformInit.h \
eoUpdatable.h \
eoUpdater.h \
pipecom.h \
rnd_generators.h \
selectors.h
AM_CXXFLAGS = -I$(top_srcdir)/src -DGNUPLOT_PROGRAM=\"@GNUPLOT@\"