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
|
# -*- makefile -*-
#
# Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
# University Research and Technology
# Corporation. All rights reserved.
# Copyright (c) 2004-2010 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) 2007 Los Alamos National Security, LLC. All rights
# reserved.
# Copyright (c) 2009 Oak Ridge National Labs. All rights reserved.
# Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2011-2013 NVIDIA Corporation. All rights reserved.
# Copyright (c) 2018 Research Organization for Information Science
# and Technology (RIST). All rights reserved.
# Copyright (c) 2021 IBM Corporation. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
headers = \
opal_convertor.h \
opal_convertor_internal.h \
opal_datatype_checksum.h \
opal_datatype.h \
opal_datatype_internal.h \
opal_datatype_copy.h \
opal_datatype_memcpy.h \
opal_datatype_pack_unpack_predefined.h \
opal_datatype_pack.h \
opal_datatype_prototypes.h \
opal_datatype_unpack.h
noinst_LTLIBRARIES = \
libdatatype_reliable.la \
libdatatype.la
# these sources will be compiled with the special -D
libdatatype_reliable_la_SOURCES = opal_datatype_pack.c opal_datatype_unpack.c
libdatatype_reliable_la_CFLAGS = -DCHECKSUM $(AM_CFLAGS)
# these sources will be compiled with the normal CFLAGS only
libdatatype_la_SOURCES = \
opal_convertor.c \
opal_convertor_raw.c \
opal_copy_functions.c \
opal_copy_functions_heterogeneous.c \
opal_datatype_add.c \
opal_datatype_clone.c \
opal_datatype_copy.c \
opal_datatype_create.c \
opal_datatype_create_contiguous.c \
opal_datatype_destroy.c \
opal_datatype_dump.c \
opal_datatype_fake_stack.c \
opal_datatype_get_count.c \
opal_datatype_module.c \
opal_datatype_monotonic.c \
opal_datatype_optimize.c \
opal_datatype_pack.c \
opal_datatype_position.c \
opal_datatype_resize.c \
opal_datatype_unpack.c
libdatatype_la_LIBADD = libdatatype_reliable.la
# Conditionally install the header files
if WANT_INSTALL_HEADERS
opaldir = $(opalincludedir)/$(subdir)
opal_HEADERS = $(headers)
endif
|