1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
##
## Copyright (C) by Argonne National Laboratory
## See COPYRIGHT in top-level directory
##
include $(top_srcdir)/Makefile_single.mtest
SUBDIRS = mpi_t
noinst_PROGRAMS = singjoin testconnect testconnectserial dimsbalanced \
spawntest_parent spawntest_child segfault gpu_query
# testconnectserial would like MPICHLIBSTR to be defined as the installation
# directory of the MPI library. This definition is not required.
noinst_HEADERS = connectstuff.h
testconnectserial_SOURCES = testconnectserial.c tchandlers.c tcutil.c
testconnectserial_LDADD = $(LDADD) -lm -lpthread
singjoin_LDADD = $(LDADD) @socklib@ @nslib@
CLEANFILES += test-port
|