2003-12-22 19:29:21 +03:00
|
|
|
#
|
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-07 11:03:01 +03:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2003-12-22 19:29:21 +03:00
|
|
|
include $(top_srcdir)/config/Makefile.options
|
|
|
|
|
2004-09-05 20:05:37 +04:00
|
|
|
AM_CPPFLAGS = -DOMPI_PKGDATADIR=\"$(pkgdatadir)\"
|
2005-07-04 06:38:44 +04:00
|
|
|
AM_LFLAGS = -Popal_show_help_yy
|
|
|
|
LEX_OUTPUT_ROOT = lex.opal_show_help_yy
|
2004-09-05 20:05:37 +04:00
|
|
|
|
2005-07-02 18:08:19 +04:00
|
|
|
noinst_LTLIBRARIES = libopalutil.la
|
2003-12-22 19:29:21 +03:00
|
|
|
|
2004-01-09 00:43:53 +03:00
|
|
|
# Source code files
|
|
|
|
|
|
|
|
headers = \
|
2005-07-02 18:08:19 +04:00
|
|
|
argv.h \
|
|
|
|
basename.h \
|
|
|
|
bit_ops.h \
|
|
|
|
cmd_line.h \
|
|
|
|
convert.h \
|
|
|
|
daemon_init.h \
|
|
|
|
few.h \
|
|
|
|
if.h \
|
|
|
|
malloc.h \
|
|
|
|
numtostr.h \
|
2005-07-04 05:36:20 +04:00
|
|
|
opal_environ.h \
|
2005-07-02 18:08:19 +04:00
|
|
|
os_create_dirpath.h \
|
|
|
|
os_path.h \
|
|
|
|
output.h \
|
|
|
|
path.h \
|
|
|
|
pow2.h \
|
|
|
|
printf.h \
|
|
|
|
qsort.h \
|
|
|
|
show_help.h \
|
|
|
|
show_help_lex.h \
|
|
|
|
stacktrace.h \
|
|
|
|
strncpy.h \
|
|
|
|
sys_info.h
|
2004-01-09 00:43:53 +03:00
|
|
|
|
2005-07-02 18:08:19 +04:00
|
|
|
libopalutil_la_SOURCES = \
|
|
|
|
$(headers) \
|
|
|
|
argv.c \
|
|
|
|
basename.c \
|
|
|
|
cmd_line.c \
|
|
|
|
convert.c \
|
|
|
|
daemon_init.c \
|
|
|
|
few.c \
|
|
|
|
if.c \
|
|
|
|
malloc.c \
|
|
|
|
numtostr.c \
|
2005-07-04 05:36:20 +04:00
|
|
|
opal_environ.c \
|
2005-07-02 18:08:19 +04:00
|
|
|
os_create_dirpath.c \
|
|
|
|
os_path.c \
|
|
|
|
output.c \
|
|
|
|
path.c \
|
|
|
|
pow2.c \
|
|
|
|
printf.c \
|
|
|
|
qsort.c \
|
|
|
|
show_help.c \
|
|
|
|
show_help_lex.l \
|
|
|
|
stacktrace.c \
|
|
|
|
strncpy.c \
|
|
|
|
sys_info.c
|
2004-01-09 00:43:53 +03:00
|
|
|
|
|
|
|
# Conditionally install the header files
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
2005-07-02 18:08:19 +04:00
|
|
|
ompidir = $(includedir)/openmpi/opal/util
|
2004-06-07 19:33:53 +04:00
|
|
|
ompi_HEADERS = $(headers)
|
2004-01-09 00:43:53 +03:00
|
|
|
else
|
2004-06-07 19:33:53 +04:00
|
|
|
ompidir = $(includedir)
|
2004-01-09 00:43:53 +03:00
|
|
|
endif
|