29 lines
476 B
Makefile
Executable file
29 lines
476 B
Makefile
Executable file
EXTRA_DIST = paradiseo-peo-lns.doxyfile foot.html
|
|
|
|
CXX=mpicxx
|
|
|
|
INCLUDES = \
|
|
-I$(EO_DIR)/src/ \
|
|
-I$(MO_DIR)/src/ \
|
|
-I../../src/ \
|
|
-I../shared/
|
|
|
|
AM_CXXFLAGS = \
|
|
-Wall -g
|
|
|
|
bin_PROGRAMS = \
|
|
tspExample
|
|
|
|
tspExample_SOURCES = \
|
|
main.cpp
|
|
|
|
tspExample_LDFLAGS = \
|
|
-L$(EO_DIR)/src/ \
|
|
-L$(EO_DIR)/src/utils \
|
|
-L../../src/core \
|
|
-L../../src/rmc/mpi/ \
|
|
-L../shared/ \
|
|
`xml2-config --libs`
|
|
|
|
tspExample_LDADD = -lparadiseo -lrmc_mpi -leoutils -leo -ltsp_shared
|
|
|