git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@40 331e1502-861f-0410-8da2-ba01fb791d7f
15 lines
334 B
Makefile
15 lines
334 B
Makefile
# Makefile.am for app/gpsymreg
|
|
|
|
noinst_PROGRAMS = gpsymreg
|
|
|
|
gpsymreg_SOURCES = main.cpp
|
|
|
|
noinst_HEADERS = fitness.h node.h parameters.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)
|