d91650ea85
(windows). Instead use the LN_S variable exported by the Makefile (set to "ln -s" on all Unixes and to "cp -p" on windows). When we remove an executable use the correct extension for its name (add $(EXEEXT) to the name). This commit was SVN r8616.
131 строка
4.2 KiB
Makefile
131 строка
4.2 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$
|
|
#
|
|
|
|
dist_pkgdata_DATA = help-wrapper.txt
|
|
|
|
# This is ugly, but we need it so that people can change things at
|
|
# "make" time (e.g., "make sysconfdir=/foo/bar all") as documented in
|
|
# autoconf.
|
|
|
|
AM_CPPFLAGS = \
|
|
-DOMPI_PREFIX="\"$(prefix)\"" \
|
|
-DOMPI_INCDIR="\"$(includedir)\"" \
|
|
-DOMPI_LIBDIR="\"$(libdir)\"" \
|
|
-DOMPI_FC_MODULE_FLAG="\"$(OMPI_FC_MODULE_FLAG)\""
|
|
|
|
if WANT_INSTALL_HEADERS
|
|
AM_CPPFLAGS += -DOMPI_WANT_DEVEL_HEADERS=1
|
|
else
|
|
AM_CPPFLAGS += -DOMPI_WANT_DEVEL_HEADERS=0
|
|
endif
|
|
|
|
EXTRA_DIST = wrap.cc wrap_engine.cc
|
|
|
|
bin_PROGRAMS = mpicc mpic++ mpif77 mpif90
|
|
|
|
libs = \
|
|
$(top_builddir)/opal/libopal.la
|
|
|
|
wrap_sources = wrap.cc wrap_engine.cc ompi_wrap.h
|
|
|
|
mpicc_SOURCES = mpicc.cc ompi_wrap.h $(wrap_sources)
|
|
mpicc_LDADD = $(libs) $(LIBMPI_EXTRA_LIBS)
|
|
mpicc_LDFLAGS = $(LIBMPI_EXTRA_LDFLAGS)
|
|
mpicc_DEPENDENCIES = $(libs)
|
|
|
|
mpic___SOURCES = mpicxx.cc ompi_wrap.h $(wrap_sources)
|
|
mpic___LDADD = $(libs) $(LIBMPI_EXTRA_LIBS)
|
|
mpic___LDFLAGS = $(LIBMPI_EXTRA_LDFLAGS)
|
|
mpic___DEPENDENCIES = $(libs)
|
|
|
|
mpif77_SOURCES = mpif77.cc ompi_wrap.h $(wrap_sources)
|
|
mpif77_LDADD = $(libs) $(LIBMPI_EXTRA_LIBS)
|
|
mpif77_LDFLAGS = $(LIBMPI_EXTRA_LDFLAGS)
|
|
mpif77_DEPENDENCIES = $(libs)
|
|
|
|
mpif90_SOURCES = mpif90.cc ompi_wrap.h $(wrap_sources)
|
|
mpif90_LDADD = $(libs) $(LIBMPI_EXTRA_LIBS)
|
|
mpif90_LDFLAGS = $(LIBMPI_EXTRA_LDFLAGS)
|
|
mpif90_DEPENDENCIES = $(libs)
|
|
|
|
# Since this is C++ and we use templates (the STL), also ditch the
|
|
# template repository directory
|
|
|
|
clean-local:
|
|
test -z "$(OMPI_CXX_TEMPLATE_REPOSITORY)" || $(RM) -rf $(OMPI_CXX_TEMPLATE_REPOSITORY)
|
|
|
|
if WANT_DEPRECATED_EXECUTABLE_NAMES
|
|
if CASE_SENSITIVE_FS
|
|
install-exec-hook:
|
|
(cd $(DESTDIR)$(bindir); rm -f hcc$(EXEEXT); $(LN_S) mpicc hcc)
|
|
(cd $(DESTDIR)$(bindir); rm -f hcp$(EXEEXT); $(LN_S) mpiCC hcp)
|
|
(cd $(DESTDIR)$(bindir); rm -f hf77$(EXEEXT); $(LN_S) mpif77 hf77)
|
|
(cd $(DESTDIR)$(bindir); rm -f mpiCC$(EXEEXT); $(LN_S) mpic++ mpiCC)
|
|
(cd $(DESTDIR)$(bindir); rm -f mpicxx$(EXEEXT); $(LN_S) mpic++ mpicxx)
|
|
else
|
|
install-exec-hook:
|
|
(cd $(DESTDIR)$(bindir); rm -f hcc$(EXEEXT); $(LN_S) mpicc hcc)
|
|
(cd $(DESTDIR)$(bindir); rm -f hcp$(EXEEXT); $(LN_S) mpic++ hcp)
|
|
(cd $(DESTDIR)$(bindir); rm -f hf77$(EXEEXT); $(LN_S) mpif77 hf77)
|
|
(cd $(DESTDIR)$(bindir); rm -f mpicxx$(EXEEXT); $(LN_S) mpic++ mpicxx)
|
|
endif
|
|
|
|
#
|
|
# mpiCC might be a symlink we created, so be nice....
|
|
#
|
|
if CASE_SENSITIVE_FS
|
|
uninstall-local:
|
|
rm -f $(DESTDIR)$(bindir)/hcc$(EXEEXT) \
|
|
$(DESTDIR)$(bindir)/hcp$(EXEEXT) \
|
|
$(DESTDIR)$(bindir)/hf77$(EXEEXT) \
|
|
$(DESTDIR)$(bindir)/mpiCC$(EXEEXT) \
|
|
$(DESTDIR)$(bindir)/mpicxx$(EXEEXT)
|
|
else
|
|
uninstall-local:
|
|
rm -f $(DESTDIR)$(bindir)/hcc$(EXEEXT) \
|
|
$(DESTDIR)$(bindir)/hcp$(EXEEXT) \
|
|
$(DESTDIR)$(bindir)/hf77$(EXEEXT) \
|
|
$(DESTDIR)$(bindir)/mpicxx$(EXEEXT)
|
|
endif
|
|
|
|
else
|
|
#
|
|
# If we don't have deprecated names, just do the mpiCC / mpic++ stuff.
|
|
# If we are on a non-case sensitive file system, don't do anything
|
|
# with mpiCC, since that is the same as mpicc, and there is no way
|
|
# that can end good.
|
|
#
|
|
if CASE_SENSITIVE_FS
|
|
install-exec-hook:
|
|
(cd $(DESTDIR)$(bindir); rm -f mpiCC$(EXEEXT); $(LN_S) mpic++ mpiCC)
|
|
(cd $(DESTDIR)$(bindir); rm -f mpicxx$(EXEEXT); $(LN_S) mpic++ mpicxx)
|
|
else
|
|
install-exec-hook:
|
|
(cd $(DESTDIR)$(bindir); rm -f mpicxx$(EXEEXT); $(LN_S) mpic++ mpicxx)
|
|
endif
|
|
|
|
if CASE_SENSITIVE_FS
|
|
uninstall-local:
|
|
rm -f $(DESTDIR)$(bindir)/mpiCC$(EXEEXT) \
|
|
$(DESTDIR)$(bindir)/mpicxx$(EXEEXT)
|
|
else
|
|
uninstall-local:
|
|
rm -f $(DESTDIR)$(bindir)/mpicxx$(EXEEXT)
|
|
endif
|
|
endif
|