1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
##
## Copyright (C) by Argonne National Laboratory
## See COPYRIGHT in top-level directory
##
include $(top_srcdir)/Makefile_single.mtest
EXTRA_DIST = testlist
## for all programs that are just built from the single corresponding source
## file, we don't need per-target _SOURCES rules, automake will infer them
## correctly
noinst_PROGRAMS = \
anyall \
bottom \
bsend1 \
bsend2 \
bsend3 \
bsend4 \
bsend5 \
bsendalign \
cancelrecv \
cancelanysrc \
isendself \
issendselfcancel \
isendirecv \
isendrecv \
isendrecv_replace \
eagerdt \
isendselfprobe \
bsendfrag \
bsendpending \
icsend \
icprobe \
rqstatus \
rqfree \
greq1 \
scancel \
scancel2 \
rcancel \
pscancel \
scancel_unmatch\
sendflood \
sendrecv2 \
sendrecv3 \
waitany_null \
probe_unexp \
probenull \
recvnull \
inactivereq \
waittestnull \
sendall \
large_message \
mprobe \
big_count_status \
many_isend \
manylmt \
huge_underflow \
huge_anysrc \
huge_dupcomm \
huge_ssend \
multi_psend_derived \
dtype_send \
recv_any \
irecv_any \
large_tag \
pingping \
sendrecv1 \
sendself \
send_tests \
pt2pt_large \
precv_anysrc \
precv_anysrc_exp \
mprobe_self_free \
pssend \
pipeline
irecv_any_CPPFLAGS = -DTEST_NB $(AM_CPPFLAGS)
irecv_any_SOURCES = recv_any.c
|