File: Makefile.am

package info (click to toggle)
openmpi 5.0.8-4
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 201,684 kB
  • sloc: ansic: 613,078; makefile: 42,353; sh: 11,194; javascript: 9,244; f90: 7,052; java: 6,404; perl: 5,179; python: 1,859; lex: 740; fortran: 61; cpp: 20; tcl: 12
file content (166 lines) | stat: -rw-r--r-- 5,954 bytes parent folder | download | duplicates (4)
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
#
# Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
#                         University Research and Technology
#                         Corporation.  All rights reserved.
# Copyright (c) 2004-2005 The University of Tennessee and The University
#                         of Tennessee Research Foundation.  All rights
#                         reserved.
# Copyright (c) 2004-2009 High Performance Computing Center Stuttgart,
#                         University of Stuttgart.  All rights reserved.
# Copyright (c) 2004-2005 The Regents of the University of California.
#                         All rights reserved.
# Copyright (c) 2006-2010 Cisco Systems, Inc.  All rights reserved.
# Copyright (c) 2012-2013 Los Alamos National Security, Inc.  All rights reserved.
# Copyright (c) 2013-2019 Intel, Inc.  All rights reserved.
# Copyright (c) 2021-2025 Nanook Consulting  All rights reserved.
# Copyright (c) 2022      IBM Corporation. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
headers = examples.h

AM_CPPFLAGS = -I$(top_builddir)/src -I$(top_builddir)/src/include -I$(top_builddir)/include -I$(top_builddir)/include/pmix

noinst_PROGRAMS = client client2 dmodex dynamic fault pub pubi \
                  tool debugger debuggerd alloc jctrl group group_dmodex asyncgroup \
                  hello nodeinfo  abi_no_init abi_with_init group_lcl_cid pset log \
                  client3 client4 launcher resolve toolqry simple_resolve pubstress

if !WANT_HIDDEN
# these examples use internal symbols
# use --disable-visibility
noinst_PROGRAMS += server
endif

client_SOURCES = client.c examples.h
client_LDFLAGS = $(PMIX_PKG_CONFIG_LDFLAGS)
client_LDADD =  $(top_builddir)/src/libpmix.la

client2_SOURCES = client2.c examples.h
client2_LDFLAGS = $(PMIX_PKG_CONFIG_LDFLAGS)
client2_LDADD =  $(top_builddir)/src/libpmix.la

client3_SOURCES = client3.c examples.h
client3_LDFLAGS = $(PMIX_PKG_CONFIG_LDFLAGS)
client3_LDADD =  $(top_builddir)/src/libpmix.la

client4_SOURCES = client4.c examples.h
client4_LDFLAGS = $(PMIX_PKG_CONFIG_LDFLAGS)
client4_LDADD =  $(top_builddir)/src/libpmix.la

debugger_SOURCES = debugger.c examples.h
debugger_LDFLAGS = $(PMIX_PKG_CONFIG_LDFLAGS)
debugger_LDADD =  $(top_builddir)/src/libpmix.la

debuggerd_SOURCES = debuggerd.c examples.h
debuggerd_LDFLAGS = $(PMIX_PKG_CONFIG_LDFLAGS)
debuggerd_LDADD =  $(top_builddir)/src/libpmix.la

alloc_SOURCES = alloc.c examples.h
alloc_LDFLAGS = $(PMIX_PKG_CONFIG_LDFLAGS)
alloc_LDADD =  $(top_builddir)/src/libpmix.la

jctrl_SOURCES = jctrl.c examples.h
jctrl_LDFLAGS = $(PMIX_PKG_CONFIG_LDFLAGS)
jctrl_LDADD =  $(top_builddir)/src/libpmix.la

dmodex_SOURCES = dmodex.c examples.h
dmodex_LDFLAGS = $(PMIX_PKG_CONFIG_LDFLAGS)
dmodex_LDADD =  $(top_builddir)/src/libpmix.la

dynamic_SOURCES = dynamic.c examples.h
dynamic_LDFLAGS = $(PMIX_PKG_CONFIG_LDFLAGS)
dynamic_LDADD = $(top_builddir)/src/libpmix.la

fault_SOURCES = fault.c examples.h
fault_LDFLAGS = $(PMIX_PKG_CONFIG_LDFLAGS)
fault_LDADD = $(top_builddir)/src/libpmix.la

pub_SOURCES = pub.c examples.h
pub_LDFLAGS = $(PMIX_PKG_CONFIG_LDFLAGS)
pub_LDADD = $(top_builddir)/src/libpmix.la

pubi_SOURCES = pubi.c examples.h
pubi_LDFLAGS = $(PMIX_PKG_CONFIG_LDFLAGS)
pubi_LDADD = $(top_builddir)/src/libpmix.la

tool_SOURCES = tool.c examples.h
tool_LDFLAGS = $(PMIX_PKG_CONFIG_LDFLAGS)
tool_LDADD = $(top_builddir)/src/libpmix.la

group_SOURCES = group.c examples.h
group_LDFLAGS = $(PMIX_PKG_CONFIG_LDFLAGS)
group_LDADD = $(top_builddir)/src/libpmix.la

group_dmodex_SOURCES = group_dmodex.c examples.h
group_dmodex_LDFLAGS = $(PMIX_PKG_CONFIG_LDFLAGS)
group_dmodex_LDADD = $(top_builddir)/src/libpmix.la

asyncgroup_SOURCES = asyncgroup.c examples.h
asyncgroup_LDFLAGS = $(PMIX_PKG_CONFIG_LDFLAGS)
asyncgroup_LDADD = $(top_builddir)/src/libpmix.la

if !WANT_HIDDEN
server_SOURCES = server.c examples.h
server_LDFLAGS = $(PMIX_PKG_CONFIG_LDFLAGS)
server_LDADD = $(top_builddir)/src/libpmix.la
endif

hello_SOURCES = hello.c examples.h
hello_LDFLAGS = $(PMIX_PKG_CONFIG_LDFLAGS)
hello_LDADD =  $(top_builddir)/src/libpmix.la

abi_no_init_SOURCES = abi_no_init.c
abi_no_init_LDFLAGS = $(PMIX_PKG_CONFIG_LDFLAGS)
abi_no_init_LDADD =  $(top_builddir)/src/libpmix.la

abi_with_init_SOURCES = abi_with_init.c
abi_with_init_LDFLAGS = $(PMIX_PKG_CONFIG_LDFLAGS)
abi_with_init_LDADD =  $(top_builddir)/src/libpmix.la

group_lcl_cid_SOURCES = group_lcl_cid.c examples.h
group_lcl_cid_LDFLAGS = $(PMIX_PKG_CONFIG_LDFLAGS)
group_lcl_cid_LDADD =  $(top_builddir)/src/libpmix.la

nodeinfo_SOURCES = nodeinfo.c examples.h
nodeinfo_LDFLAGS = $(PMIX_PKG_CONFIG_LDFLAGS)
nodeinfo_LDADD =  $(top_builddir)/src/libpmix.la

pset_SOURCES = pset.c examples.h
pset_LDFLAGS = $(PMIX_PKG_CONFIG_LDFLAGS)
pset_LDADD = $(top_builddir)/src/libpmix.la

log_SOURCES = log.c examples.h
log_LDFLAGS = $(PMIX_PKG_CONFIG_LDFLAGS)
log_LDADD = $(top_builddir)/src/libpmix.la

launcher_SOURCES = launcher.c examples.h
launcher_LDFLAGS = $(PMIX_PKG_CONFIG_LDFLAGS)
launcher_LDADD = $(top_builddir)/src/libpmix.la

resolve_SOURCES = resolve.c examples.h
resolve_LDFLAGS = $(PMIX_PKG_CONFIG_LDFLAGS)
resolve_LDADD = $(top_builddir)/src/libpmix.la

toolqry_SOURCES = toolqry.c examples.h
toolqry_LDFLAGS = $(PMIX_PKG_CONFIG_LDFLAGS)
toolqry_LDADD = $(top_builddir)/src/libpmix.la

simple_resolve_SOURCES = simple_resolve.c examples.h
simple_resolve_LDFLAGS = $(PMIX_PKG_CONFIG_LDFLAGS)
simple_resolve_LDADD = $(top_builddir)/src/libpmix.la

pubstress_SOURCES = pubstress.c examples.h
pubstress_LDFLAGS = $(PMIX_PKG_CONFIG_LDFLAGS)
pubstress_LDADD = $(top_builddir)/src/libpmix.la

distclean-local:
	rm -f *.o alloc asyncgroup bad_exit client client2 \
        debugger debuggerd dmodex dynamic fault group \
        hello jctrl launcher log pub pubi server tool \
        abi_no_init abi_with_init group_lcl_cid pset \
        async_group group_dmodex client3 resolve toolqry \
        simple_resolve