01b8f0989c
This commit was SVN r907.
35 строки
581 B
Makefile
35 строки
581 B
Makefile
# -*- makefile -*-
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
|
|
|
AM_CPPFLAGS = -I$(top_builddir)/src/event
|
|
|
|
noinst_LTLIBRARIES = libruntime.la
|
|
|
|
# Source code files
|
|
|
|
headers = \
|
|
runtime.h
|
|
|
|
libruntime_la_SOURCES = \
|
|
$(headers) \
|
|
lam_abort.c \
|
|
lam_finalize.c \
|
|
lam_init.c \
|
|
lam_mpi_init.c \
|
|
lam_mpi_finalize.c \
|
|
lam_rte_finalize.c \
|
|
lam_rte_init.c
|
|
|
|
# Conditionally install the header files
|
|
|
|
if WANT_INSTALL_HEADERS
|
|
lamdir = $(includedir)/lam/runtime
|
|
lam_HEADERS = $(headers)
|
|
else
|
|
lamdir = $(includedir)
|
|
endif
|