|
| 1 | +# |
| 2 | +# Copyright (c) 2004-2006 The Regents of the University of California. |
| 3 | +# All rights reserved. |
| 4 | +# Copyright (c) 2009-2024 High Performance Computing Center Stuttgart, |
| 5 | +# University of Stuttgart. All rights reserved. |
| 6 | +# Copyright (c) 2010 Cisco Systems, Inc. All rights reserved. |
| 7 | +# Copyright (c) 2017 IBM Corporation. All rights reserved. |
| 8 | +# Copyright (c) 2020-2021 Sandia National Laboratories. All rights reserved. |
| 9 | +# $COPYRIGHT$ |
| 10 | +# |
| 11 | +# Additional copyrights may follow |
| 12 | +# |
| 13 | +# $HEADER$ |
| 14 | +# |
| 15 | + |
| 16 | +# Make the output library in this directory, and name it either |
| 17 | +# mca_<type>_<name>.la (for DSO builds) or libmca_<type>_<name>.la |
| 18 | +# (for static builds). |
| 19 | + |
| 20 | +EXTRA_DIST = post_configure.sh |
| 21 | + |
| 22 | +if MCA_BUILD_ompi_part_persist_aggregated_DSO |
| 23 | +component_noinst = |
| 24 | +component_install = mca_part_persist_aggregated.la |
| 25 | +else |
| 26 | +component_noinst = libmca_part_persist_aggregated.la |
| 27 | +component_install = |
| 28 | +endif |
| 29 | + |
| 30 | +local_sources = \ |
| 31 | + part_persist_aggregated.c \ |
| 32 | + part_persist_aggregated.h \ |
| 33 | + part_persist_aggregated_component.c \ |
| 34 | + part_persist_aggregated_component.h \ |
| 35 | + part_persist_aggregated_recvreq.h \ |
| 36 | + part_persist_aggregated_recvreq.c \ |
| 37 | + part_persist_aggregated_request.h \ |
| 38 | + part_persist_aggregated_request.c \ |
| 39 | + part_persist_aggregated_sendreq.h \ |
| 40 | + part_persist_aggregated_sendreq.c |
| 41 | + |
| 42 | +mcacomponentdir = $(ompilibdir) |
| 43 | +mcacomponent_LTLIBRARIES = $(component_install) |
| 44 | +mca_part_persist_aggregated_la_SOURCES = $(local_sources) |
| 45 | +mca_part_persist_aggregated_la_LIBADD = $(top_builddir)/ompi/lib@OMPI_LIBMPI_NAME@.la \ |
| 46 | + $(part_persist_aggregated_LIBS) |
| 47 | +mca_part_persist_aggregated_la_LDFLAGS = -module -avoid-version $(part_persist_aggregated_LDFLAGS) |
| 48 | + |
| 49 | +noinst_LTLIBRARIES = $(component_noinst) |
| 50 | +libmca_part_persist_aggregated_la_SOURCES = $(local_sources) |
| 51 | +libmca_part_persist_aggregated_la_LIBADD = $(part_persist_aggregated_LIBS) |
| 52 | +libmca_part_persist_aggregated_la_LDFLAGS = -module -avoid-version $(part_persist_aggregated_LDFLAGS) |
| 53 | + |
0 commit comments