2004-01-12 19:08:46 +03:00
|
|
|
# -*- makefile -*-
|
|
|
|
#
|
2004-11-22 04:38:40 +03: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 23:09:25 +03:00
|
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
# University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
# All rights reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
2004-01-12 19:08:46 +03:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
|
|
|
|
2004-03-19 03:00:09 +03:00
|
|
|
noinst_LTLIBRARIES = liberrhandler.la
|
|
|
|
|
2004-01-12 19:08:46 +03:00
|
|
|
# Source code files
|
|
|
|
|
|
|
|
headers = \
|
2004-07-08 00:59:20 +04:00
|
|
|
errclass.h \
|
|
|
|
errcode.h \
|
|
|
|
errcode-internal.h \
|
2004-03-19 09:12:43 +03:00
|
|
|
errhandler.h \
|
|
|
|
errhandler_predefined.h
|
2004-01-12 19:08:46 +03:00
|
|
|
|
2004-03-19 03:00:09 +03:00
|
|
|
liberrhandler_la_SOURCES = \
|
2005-07-02 19:06:47 +04:00
|
|
|
$(headers) \
|
2004-03-19 09:12:43 +03:00
|
|
|
errhandler.c \
|
|
|
|
errhandler_invoke.c \
|
2004-06-18 02:40:16 +04:00
|
|
|
errhandler_predefined.c \
|
2005-07-02 19:06:47 +04:00
|
|
|
errcode.c \
|
|
|
|
errclass.c \
|
|
|
|
errcode-internal.c
|
2004-03-19 03:00:09 +03:00
|
|
|
|
2004-01-12 19:08:46 +03:00
|
|
|
# Conditionally install the header files
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
2005-07-02 19:06:47 +04:00
|
|
|
ompidir = $(includedir)/openmpi/ompi/errhandler
|
2004-06-07 19:33:53 +04:00
|
|
|
ompi_HEADERS = $(headers)
|
2004-01-12 19:08:46 +03:00
|
|
|
else
|
2004-06-07 19:33:53 +04:00
|
|
|
ompidir = $(includedir)
|
2004-01-12 19:08:46 +03:00
|
|
|
endif
|