2006-01-16 04:48:03 +03:00
|
|
|
#
|
|
|
|
# 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.
|
2006-09-25 18:11:21 +04:00
|
|
|
# Copyright (c) 2006 Cisco Systems, Inc. All rights reserved.
|
2006-01-16 04:48:03 +03:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2006-04-29 06:16:41 +04:00
|
|
|
if OMPI_INSTALL_BINARIES
|
|
|
|
|
2006-01-16 04:48:03 +03:00
|
|
|
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)
|
2006-09-29 18:34:39 +04:00
|
|
|
(cd $(DESTDIR)$(pkgdatadir); rm -f orteCC-wrapper-data.txt; $(LN_S) ortec++-wrapper-data.txt orteCC-wrapper-data.txt)
|
|
|
|
|
|
|
|
install-data-hook:
|
2006-09-25 18:11:21 +04:00
|
|
|
(cd $(DESTDIR)$(mandir)/man1; rm -f ortecc.1; $(LN_S) opalcc.1 ortecc.1)
|
|
|
|
(cd $(DESTDIR)$(mandir)/man1; rm -f ortec++.1; $(LN_S) opalcc.1 ortec++.1)
|
|
|
|
(cd $(DESTDIR)$(mandir)/man1; rm -f orteCC.1; $(LN_S) opalcc.1 orteCC.1)
|
2006-01-16 04:48:03 +03:00
|
|
|
|
|
|
|
uninstall-local:
|
|
|
|
rm -f $(DESTDIR)$(bindir)/ortecc$(EXEEXT) \
|
|
|
|
$(DESTDIR)$(bindir)/ortec++$(EXEEXT) \
|
|
|
|
$(DESTDIR)$(bindir)/orteCC$(EXEEXT) \
|
2006-09-25 18:11:21 +04:00
|
|
|
$(DESTDIR)$(mandir)/man1/ortecc.1 \
|
|
|
|
$(DESTDIR)$(mandir)/man1/ortec++.1 \
|
|
|
|
$(DESTDIR)$(mandir)/man1/orteCC.1 \
|
2006-01-16 04:48:03 +03:00
|
|
|
$(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++)
|
2006-09-29 18:34:39 +04:00
|
|
|
|
|
|
|
install-data-hook:
|
2006-09-25 18:11:21 +04:00
|
|
|
(cd $(DESTDIR)$(mandir)/man1; rm -f ortecc.1; $(LN_S) opalcc.1 ortecc.1)
|
|
|
|
(cd $(DESTDIR)$(mandir)/man1; rm -f ortec++.1; $(LN_S) opalcc.1 ortec++.1)
|
2006-01-16 04:48:03 +03:00
|
|
|
|
|
|
|
uninstall-local:
|
|
|
|
rm -f $(DESTDIR)$(bindir)/ortecc$(EXEEXT) \
|
2006-09-25 18:11:21 +04:00
|
|
|
$(DESTDIR)$(mandir)/man1/ortecc.1 \
|
|
|
|
$(DESTDIR)$(mandir)/man1/ortec++.1 \
|
2006-01-16 04:48:03 +03:00
|
|
|
$(DESTDIR)$(bindir)/ortec++$(EXEEXT)
|
|
|
|
|
|
|
|
endif
|
2006-04-29 06:16:41 +04:00
|
|
|
|
|
|
|
endif
|