paradiseo/eo/tutorial/Lesson2/Makefile.am
kuepper c8494642d5 Updated build-prcess to be completely under automake control.
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.
2004-09-17 16:53:31 +00:00

23 lines
404 B
Makefile

bin_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 -leoutils -leo
INCLUDES = -I$(top_srcdir)/src