- 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.
14 lines
327 B
Makefile
14 lines
327 B
Makefile
# Makefile.am for app/mastermind
|
|
|
|
noinst_PROGRAMS = mastermind
|
|
|
|
mastermind_SOURCES = mastermind.cpp
|
|
|
|
noinst_HEADERS = mastermind.h
|
|
|
|
LIBEO = $(top_builddir)/src/libeo.a
|
|
LIBEOUTILS = $(top_builddir)/src/utils/libeoutils.a
|
|
|
|
AM_CXXFLAGS = -I$(top_srcdir)/src
|
|
DEPS = $(LIBEO) $(LIBEOUTILS)
|
|
LIBS = $(LIBEO) $(LIBEOUTILS)
|