5ef6367f73
Specifically, this patch makes the following changes. build scripts: - master_top_srcdir -> main_top_srcdir Git: - "master" -> "main" branch (variable names and comments) global structures and variables: - MPIR_ThreadInfo.master_thread -> MPIR_ThreadInfo.main_thread - struct PMIMaster -> struct PMIMain - PMI2_Connect_comm_t.isMaster -> PMI2_Connect_comm_t.isMain names of tests: - spawntest_master -> spawntest_parent - taskmaster -> taskmanager - th_taskmaster -> th_taskmanager` comments and names of temporary/local variables: - master -> main, parent, server, ... - slave -> child, worker, client, ...
44 linhas
1.1 KiB
Makefile
44 linhas
1.1 KiB
Makefile
##
|
|
## 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 = \
|
|
namepub \
|
|
spawn1 \
|
|
spawninfo1 \
|
|
spawnminfo1 \
|
|
spawn2 \
|
|
spawnintra \
|
|
spawnargv \
|
|
spawnmanyarg \
|
|
spaconacc \
|
|
spaconacc2 \
|
|
selfconacc \
|
|
spawnmult2 \
|
|
taskmanager \
|
|
join \
|
|
disconnect_reconnect \
|
|
disconnect_reconnect2 \
|
|
disconnect_reconnect3 \
|
|
multiple_ports \
|
|
multiple_ports2 \
|
|
spaiccreate \
|
|
spaiccreate2 \
|
|
disconnect \
|
|
disconnect2 \
|
|
disconnect3 \
|
|
pgroup_connect_test \
|
|
pgroup_intercomm_test \
|
|
concurrent_spawns \
|
|
spawn_rootargs
|
|
|
|
join_LDADD = $(LDADD) @socklib@ @nslib@
|