52369307f8
in San Jose. Allow the configure option --disable-binaries to build OMPI, but not build or install the support binaries (so basically, just build the libraries). This commit was SVN r9777.
51 строка
1.7 KiB
Makefile
51 строка
1.7 KiB
Makefile
#
|
|
# 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$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
if OMPI_INSTALL_BINARIES
|
|
|
|
nodist_pkgdata_DATA = \
|
|
ortecc-wrapper-data.txt \
|
|
ortec++-wrapper-data.txt
|
|
|
|
if CASE_SENSITIVE_FS
|
|
install-exec-hook:
|
|
(cd $(DESTDIR)$(bindir); rm -f ortecc$(EXEEXT); $(LN_S) opal_wrapper ortecc)
|
|
(cd $(DESTDIR)$(bindir); rm -f ortec++$(EXEEXT); $(LN_S) opal_wrapper ortec++)
|
|
(cd $(DESTDIR)$(bindir); rm -f orteCC$(EXEEXT); $(LN_S) opal_wrapper orteCC)
|
|
|
|
(cd $(DESTDIR)$(pkgdatadir); rm -f orteCC-wrapper-data.txt; $(LN_S) ortec++-wrapper-data.txt orteCC-wrapper-data.txt)
|
|
|
|
uninstall-local:
|
|
rm -f $(DESTDIR)$(bindir)/ortecc$(EXEEXT) \
|
|
$(DESTDIR)$(bindir)/ortec++$(EXEEXT) \
|
|
$(DESTDIR)$(bindir)/orteCC$(EXEEXT) \
|
|
$(DESTDIR)$(pkgdatadir)/orteCC-wrapper-data.txt
|
|
|
|
else
|
|
install-exec-hook:
|
|
(cd $(DESTDIR)$(bindir); rm -f ortecc$(EXEEXT); $(LN_S) opal_wrapper ortecc)
|
|
(cd $(DESTDIR)$(bindir); rm -f ortec++$(EXEEXT); $(LN_S) opal_wrapper ortec++)
|
|
|
|
uninstall-local:
|
|
rm -f $(DESTDIR)$(bindir)/ortecc$(EXEEXT) \
|
|
$(DESTDIR)$(bindir)/ortec++$(EXEEXT)
|
|
|
|
endif
|
|
|
|
endif
|