1
1
openmpi/src/mpiruntime/Makefile.am
Brian Barrett a27f749134 * Move the MPI runtime code from src/runtime to src/mpiruntime to make the
abstraction a little clearer.
* Include mpiruntime.h instead of runtime.h in errhandler.h since only the
  MPI stuff was needed - speeds compile times greatly when working on the
  RTE...

This commit was SVN r1948.
2004-08-07 00:53:56 +00:00

30 строки
480 B
Makefile

# -*- makefile -*-
#
# $HEADER$
#
include $(top_srcdir)/config/Makefile.options
AM_CPPFLAGS = -I$(top_builddir)/src/event
noinst_LTLIBRARIES = libmpiruntime.la
# Source code files
headers = \
mpiruntime.h
libmpiruntime_la_SOURCES = \
$(headers) \
ompi_mpi_init.c \
ompi_mpi_finalize.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/mpiruntime
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif