
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.
30 строки
480 B
Makefile
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
|