git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@127 331e1502-861f-0410-8da2-ba01fb791d7f
25 lines
380 B
Makefile
Executable file
25 lines
380 B
Makefile
Executable file
CXX=mpicxx
|
|
|
|
INCLUDES = \
|
|
-I$(EO_DIR)/src/ \
|
|
-I$(MO_DIR)/src/ \
|
|
-I../../src/
|
|
|
|
AM_CXXFLAGS = \
|
|
-Wall -g
|
|
|
|
bin_PROGRAMS = \
|
|
tspExample
|
|
|
|
tspExample_SOURCES = \
|
|
main.cpp
|
|
|
|
tspExample_LDFLAGS = \
|
|
-L$(EO_DIR)/src/ \
|
|
-L$(EO_DIR)/src/utils \
|
|
-L../../src/ \
|
|
-L../../src/rmc/mpi/ \
|
|
`xml2-config --libs`
|
|
|
|
tspExample_LDADD = -lparadiseo -lrmc_mpi -leoutils -leo -ltsp_shared
|
|
|