37d9a727f2
1. The OpenSHMEM specification is silent regarding how OpenSHMEM programs are compiled, linked and run. These wrappers are added to meet an example in the specification. 2. remove unused/obsolete files Implemented by Igor, reviewed by miked cmr=v1.7.4:reviewer=ompi-rm1.7 This commit was SVN r29332.
48 строки
1.1 KiB
Makefile
48 строки
1.1 KiB
Makefile
# Copyright (c) 2013 Mellanox Technologies, Inc.
|
|
# All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
|
|
headers =
|
|
nodist_headers = \
|
|
oshmem_config.h
|
|
|
|
# Install these in $(includedir)
|
|
include_HEADERS =
|
|
|
|
# Install these in $(includedir)
|
|
mppincludedir = $(includedir)/mpp
|
|
mppinclude_HEADERS = mpp/shmem.h \
|
|
mpp/shmem.fh
|
|
|
|
# Always install these in $(pkgincludedir)
|
|
pkginclude_HEADERS =
|
|
|
|
include_HEADERS += shmem.fh
|
|
|
|
# These files are always installed in $(includedir), but shouldn't be
|
|
# shipped since they are generated by configure from their .in
|
|
# counterparts (which AM automatically ships).
|
|
nodist_include_HEADERS = \
|
|
shmem.h \
|
|
shmem_portable_platform.h
|
|
|
|
if WANT_INSTALL_HEADERS
|
|
oshmemdir = $(includedir)/oshmem
|
|
nobase_dist_oshmem_HEADERS = $(headers)
|
|
nobase_nodist_oshmem_HEADERS = $(nodist_headers)
|
|
else
|
|
oshmemdir = $(includedir)
|
|
nobase_dist_noinst_HEADERS = $(headers)
|
|
nobase_nodist_noinst_HEADERS = $(nodist_headers)
|
|
endif
|
|
|
|
distclean-local:
|
|
|
|
include oshmem/Makefile.am
|