7712b07ac4
is still to use the C based wrapper compilers (which have many more features and are more well tested). The Perl compilers are enabled with the option --enable-script-wrapper-compilers, which also ignores the option --disable-binaries (ie --enable-script-wrapper-compilers --disable-binaries will result in perl-based wrapper compilers being installed, but no other binaries being installed). This commit was SVN r18655.
68 строки
2.1 KiB
Makefile
68 строки
2.1 KiB
Makefile
#
|
|
# Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
# University Research and Technology
|
|
# Corporation. All rights reserved.
|
|
# Copyright (c) 2004-2006 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) 2006-2008 Cisco Systems, Inc. All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
DEFS="-DEXEEXT=\"$(EXEEXT)\""
|
|
|
|
EXTRA_DIST = generic_wrapper.1
|
|
|
|
if !OMPI_WANT_SCRIPT_WRAPPER_COMPILERS
|
|
if OMPI_INSTALL_BINARIES
|
|
|
|
bin_PROGRAMS = opal_wrapper
|
|
|
|
dist_man_MANS = opal_wrapper.1
|
|
|
|
dist_pkgdata_DATA = help-opal-wrapper.txt
|
|
|
|
# Only install the following for developer-level installs
|
|
if WANT_INSTALL_HEADERS
|
|
|
|
nodist_pkgdata_DATA = \
|
|
opalcc-wrapper-data.txt \
|
|
opalc++-wrapper-data.txt
|
|
|
|
dist_man_MANS += opalcc.1 opalc++.1
|
|
|
|
install-exec-hook:
|
|
(cd $(DESTDIR)$(bindir); rm -f opalcc$(EXEEXT); $(LN_S) opal_wrapper opalcc)
|
|
(cd $(DESTDIR)$(bindir); rm -f opalc++$(EXEEXT); $(LN_S) opal_wrapper opalc++)
|
|
|
|
uninstall-local:
|
|
rm -f $(DESTDIR)$(bindir)/opalcc$(EXEEXT) \
|
|
$(DESTDIR)$(bindir)/opalc++$(EXEEXT)
|
|
|
|
endif # WANT_INSTALL_HEADERS
|
|
|
|
endif # OMPI_INSTALL_BINARIES
|
|
endif # OMPI_WANT_SCRIPT_WRAPPER_COMPILERS
|
|
|
|
opal_wrapper_SOURCES = opal_wrapper.c
|
|
opal_wrapper_LDADD = $(top_builddir)/opal/libopen-pal.la
|
|
|
|
maintainer-clean-local:
|
|
rm -f opalcc.1 opalc++.1
|
|
|
|
opalcc.1: generic_wrapper.1
|
|
rm -f opalcc.1
|
|
sed -e 's/@COMMAND@/opalcc/g' -e 's/@PROJECT@/Open PAL/g' -e 's/@PROJECT_SHORT@/OPAL/g' -e 's/@LANGUAGE@/C/g' < $(top_srcdir)/opal/tools/wrappers/generic_wrapper.1 > opalcc.1
|
|
|
|
opalc++.1: generic_wrapper.1
|
|
rm -f opalc++.1
|
|
sed -e 's/@COMMAND@/opalc++/g' -e 's/@PROJECT@/Open PAL/g' -e 's/@PROJECT_SHORT@/OPAL/g' -e 's/@LANGUAGE@/C++/g' < $(top_srcdir)/opal/tools/wrappers/generic_wrapper.1 > opalc++.1
|