- 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.
23 lines
407 B
Makefile
23 lines
407 B
Makefile
|
|
noinst_PROGRAMS = FirstBitEA FirstRealEA exercise2.3
|
|
|
|
|
|
FirstBitEA_SOURCES = FirstBitEA.cpp
|
|
|
|
FirstRealEA_SOURCES = FirstRealEA.cpp
|
|
|
|
exercise2_3_SOURCES = exercise2.3.cpp
|
|
|
|
|
|
noinst_HEADERS = binary_value.h \
|
|
real_value.h
|
|
|
|
extra_DIST = Makefile.simple
|
|
|
|
|
|
LDADD = -L$(top_builddir)/src -L$(top_builddir)/src/ga -L$(top_builddir)/src/utils
|
|
|
|
LIBS = -lga -leo -leoutils
|
|
|
|
INCLUDES = -I$(top_srcdir)/src
|
|
|