2004-01-08 21:19:31 +00:00
|
|
|
# -*- makefile -*-
|
2003-12-22 16:29:21 +00:00
|
|
|
#
|
2004-01-07 08:03:01 +00:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2003-12-22 16:29:21 +00:00
|
|
|
include $(top_srcdir)/config/Makefile.options
|
|
|
|
|
2004-01-08 15:49:20 +00:00
|
|
|
noinst_LTLIBRARIES = libutil.la
|
2003-12-22 16:29:21 +00:00
|
|
|
|
2004-01-08 21:43:53 +00:00
|
|
|
# Source code files
|
|
|
|
|
|
|
|
headers = \
|
2004-01-09 08:07:28 +00:00
|
|
|
argv.h \
|
2004-06-29 00:02:25 +00:00
|
|
|
bit_ops.h \
|
2004-01-10 21:30:53 +00:00
|
|
|
cmd_line.h \
|
2004-06-16 20:03:05 +00:00
|
|
|
common_cmd_line.h \
|
2004-01-10 21:18:25 +00:00
|
|
|
few.h \
|
2004-01-14 18:24:30 +00:00
|
|
|
if.h \
|
2004-06-15 19:07:45 +00:00
|
|
|
malloc.h \
|
2004-01-14 06:42:24 +00:00
|
|
|
output.h \
|
2004-01-09 08:03:27 +00:00
|
|
|
path.h \
|
2004-05-20 13:54:14 +00:00
|
|
|
sys_info.h \
|
2004-06-29 04:50:40 +00:00
|
|
|
proc_info.h \
|
2004-05-26 02:23:01 +00:00
|
|
|
os_path.h \
|
|
|
|
os_create_dirpath.h \
|
2004-06-29 04:52:33 +00:00
|
|
|
session_dir.h \
|
2004-01-09 08:07:28 +00:00
|
|
|
strncpy.h
|
2004-01-08 21:43:53 +00:00
|
|
|
|
|
|
|
libutil_la_SOURCES = \
|
2004-01-09 08:07:28 +00:00
|
|
|
$(headers) \
|
|
|
|
argv.c \
|
2004-01-10 21:30:53 +00:00
|
|
|
cmd_line.c \
|
2004-06-16 20:03:05 +00:00
|
|
|
common_cmd_line.c \
|
2004-01-10 21:18:25 +00:00
|
|
|
few.c \
|
2004-01-14 18:24:30 +00:00
|
|
|
if.c \
|
2004-06-15 19:07:45 +00:00
|
|
|
malloc.c \
|
2004-01-14 06:42:24 +00:00
|
|
|
output.c \
|
2004-01-09 08:03:27 +00:00
|
|
|
path.c \
|
2004-06-29 04:50:40 +00:00
|
|
|
proc_info.c \
|
2004-05-20 13:54:14 +00:00
|
|
|
sys_info.c \
|
2004-05-26 02:23:01 +00:00
|
|
|
os_path.c \
|
|
|
|
os_create_dirpath.c \
|
2004-06-29 04:52:33 +00:00
|
|
|
session_dir.c \
|
2004-01-09 08:07:28 +00:00
|
|
|
strncpy.c
|
2004-01-08 21:43:53 +00:00
|
|
|
|
|
|
|
# Conditionally install the header files
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
2004-06-17 18:21:08 +00:00
|
|
|
ompidir = $(includedir)/openmpi/util
|
2004-06-07 15:33:53 +00:00
|
|
|
ompi_HEADERS = $(headers)
|
2004-01-08 21:43:53 +00:00
|
|
|
else
|
2004-06-07 15:33:53 +00:00
|
|
|
ompidir = $(includedir)
|
2004-01-08 21:43:53 +00:00
|
|
|
endif
|