2004-03-18 21:35:28 +00:00
|
|
|
#
|
2004-11-22 01:38:40 +00:00
|
|
|
# Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
|
|
# All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
|
|
# All rights reserved.
|
2004-11-28 20:09:25 +00:00
|
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
# University of Stuttgart. All rights reserved.
|
2005-03-24 12:43:37 +00:00
|
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
# All rights reserved.
|
2004-11-22 01:38:40 +00:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
2004-03-18 21:35:28 +00:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
|
|
|
|
2005-08-26 00:11:30 +00:00
|
|
|
dist_noinst_HEADERS = \
|
2005-03-19 22:04:32 +00:00
|
|
|
orte_config.h \
|
2004-06-07 15:33:53 +00:00
|
|
|
ompi_config_bottom.h \
|
2005-08-26 00:11:30 +00:00
|
|
|
ompi_stdint.h
|
|
|
|
|
|
|
|
nodist_noinst_HEADERS = \
|
|
|
|
ompi_config.h
|
|
|
|
|
|
|
|
dist_include_HEADERS = \
|
2005-02-10 02:19:00 +00:00
|
|
|
mpi.h
|
|
|
|
|
|
|
|
nodist_include_HEADERS = \
|
2004-03-18 21:35:28 +00:00
|
|
|
mpif.h
|
|
|
|
|
2005-08-26 00:11:30 +00:00
|
|
|
# Conditionally install the header files
|
2004-03-18 21:35:28 +00:00
|
|
|
|
2005-08-26 00:11:30 +00:00
|
|
|
if WANT_INSTALL_HEADERS
|
|
|
|
ompidir = $(includedir)
|
|
|
|
dist_ompi_HEADERS = $(dist_noinst_HEADERS)
|
|
|
|
nodist_ompi_HEADERS = $(nodist_noinst_HEADERS)
|
|
|
|
else
|
|
|
|
ompidir = $(includedir)
|
|
|
|
endif
|