-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile.am
More file actions
72 lines (62 loc) · 2.4 KB
/
Makefile.am
File metadata and controls
72 lines (62 loc) · 2.4 KB
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
#
# 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-2005 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) 2008-2012 University of Houston. All rights reserved.
# Copyright (c) 2016-2017 IBM Corporation. All rights reserved.
# Copyright (c) 2018 Research Organization for Information Science
# and Technology (RIST). All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
# Make the output library in this directory, and name it either
# mca_<type>_<name>.la (for DSO builds) or libmca_<type>_<name>.la
# (for static builds).
if MCA_BUILD_ompi_io_bbview_DSO
component_noinst =
component_install = mca_io_bbview.la
else
component_noinst = libmca_io_bbview.la
component_install =
endif
mcacomponentdir = $(bbviewlibdir)
mcacomponent_LTLIBRARIES = $(component_install)
mca_io_bbview_la_SOURCES = $(headers) $(sources)
mca_io_bbview_la_LDFLAGS = -module -avoid-version
mca_io_bbview_la_LIBADD = $(io_bbview_LIBS) \
$(OMPI_TOP_BUILDDIR)/ompi/mca/common/ompio/libmca_common_ompio.la
noinst_LTLIBRARIES = $(component_noinst)
libmca_io_bbview_la_SOURCES = $(headers) $(sources)
libmca_io_bbview_la_LDFLAGS = -module -avoid-version
# Source files
headers = \
io_bbview.h
sources = \
io_bbview.c \
io_bbview_component.c \
io_bbview_module.c \
io_bbview_file_set_view.c \
io_bbview_file_open.c \
io_bbview_file_write.c \
io_bbview_file_read.c \
io_bbview_file_flush.c
sbin_PROGRAMS = bbviewd
bbviewd_SOURCES = bbviewd.c
bbviewd_LDADD = \
$(OMPI_TOP_BUILDDIR)/ompi/libmpi.la \
$(OMPI_TOP_BUILDDIR)/opal/libopen-pal.la \
$(OMPI_TOP_BUILDDIR)/ompi/mca/common/ompio/libmca_common_ompio.la
bbviewd_DEPENDENCIES = \
$(OMPI_TOP_BUILDDIR)/ompi/libmpi.la \
$(OMPI_TOP_BUILDDIR)/opal/libopen-pal.la \
$(OMPI_TOP_BUILDDIR)/ompi/mca/common/ompio/libmca_common_ompio.la