2c6e47e38c
This commit was SVN r7222.
87 строки
1.9 KiB
Makefile
87 строки
1.9 KiB
Makefile
#
|
|
# 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.
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
# University of Stuttgart. All rights reserved.
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
# All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
|
|
|
|
AM_CPPFLAGS = -DOMPI_PKGDATADIR=\"$(pkgdatadir)\"
|
|
AM_LFLAGS = -Popal_show_help_yy
|
|
LEX_OUTPUT_ROOT = lex.opal_show_help_yy
|
|
|
|
noinst_LTLIBRARIES = libopalutil.la
|
|
|
|
# Source code files
|
|
|
|
headers = \
|
|
argv.h \
|
|
basename.h \
|
|
bit_ops.h \
|
|
cmd_line.h \
|
|
convert.h \
|
|
daemon_init.h \
|
|
error.h \
|
|
few.h \
|
|
if.h \
|
|
malloc.h \
|
|
numtostr.h \
|
|
opal_environ.h \
|
|
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 \
|
|
trace.h
|
|
|
|
libopalutil_la_SOURCES = \
|
|
$(headers) \
|
|
argv.c \
|
|
basename.c \
|
|
cmd_line.c \
|
|
convert.c \
|
|
daemon_init.c \
|
|
error.c \
|
|
few.c \
|
|
if.c \
|
|
malloc.c \
|
|
numtostr.c \
|
|
opal_environ.c \
|
|
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 \
|
|
trace.c
|
|
|
|
# Conditionally install the header files
|
|
|
|
if WANT_INSTALL_HEADERS
|
|
ompidir = $(includedir)/openmpi/opal/util
|
|
ompi_HEADERS = $(headers)
|
|
else
|
|
ompidir = $(includedir)
|
|
endif
|