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.
16 lines
319 B
Makefile
16 lines
319 B
Makefile
|
|
bin_PROGRAMS = FirstBitGA FirstRealGA exercise1.3
|
|
|
|
FirstBitGA_SOURCES = FirstBitGA.cpp
|
|
|
|
FirstRealGA_SOURCES = FirstRealGA.cpp
|
|
|
|
exercise1_3_SOURCES = exercise1.3.cpp
|
|
|
|
|
|
LDADD = -L$(top_builddir)/src -L$(top_builddir)/src/ga -L$(top_builddir)/src/utils
|
|
|
|
LIBS = -lga -leoutils -leo
|
|
|
|
INCLUDES = -I$(top_srcdir)/src
|
|
|