2004-01-09 00:19:31 +03:00
|
|
|
# -*- makefile -*-
|
2003-12-22 19:29:21 +03:00
|
|
|
#
|
2004-01-07 11:03:01 +03:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2003-12-22 19:29:21 +03:00
|
|
|
include $(top_srcdir)/config/Makefile.options
|
|
|
|
|
2004-08-20 03:34:46 +04:00
|
|
|
libutil_la_CCASFLAGS = $(CPPFLAGS)
|
|
|
|
|
2004-01-08 18:49:20 +03:00
|
|
|
noinst_LTLIBRARIES = libutil.la
|
2003-12-22 19:29:21 +03:00
|
|
|
|
2004-01-09 00:43:53 +03:00
|
|
|
# Source code files
|
|
|
|
|
|
|
|
headers = \
|
2004-01-09 11:07:28 +03:00
|
|
|
argv.h \
|
2004-06-29 04:02:25 +04:00
|
|
|
bit_ops.h \
|
2004-01-11 00:30:53 +03:00
|
|
|
cmd_line.h \
|
2004-06-17 00:03:05 +04:00
|
|
|
common_cmd_line.h \
|
2004-01-11 00:18:25 +03:00
|
|
|
few.h \
|
2004-01-14 21:24:30 +03:00
|
|
|
if.h \
|
2004-06-15 23:07:45 +04:00
|
|
|
malloc.h \
|
2004-07-14 22:04:31 +04:00
|
|
|
numtostr.h \
|
2004-01-14 09:42:24 +03:00
|
|
|
output.h \
|
2004-01-09 11:03:27 +03:00
|
|
|
path.h \
|
2004-08-11 11:04:38 +04:00
|
|
|
pack.h \
|
2004-05-20 17:54:14 +04:00
|
|
|
sys_info.h \
|
2004-08-11 02:41:17 +04:00
|
|
|
printf.h \
|
2004-06-29 08:50:40 +04:00
|
|
|
proc_info.h \
|
2004-05-26 06:23:01 +04:00
|
|
|
os_path.h \
|
|
|
|
os_create_dirpath.h \
|
2004-08-20 03:34:46 +04:00
|
|
|
pow2.h \
|
2004-06-29 08:52:33 +04:00
|
|
|
session_dir.h \
|
2004-01-09 11:07:28 +03:00
|
|
|
strncpy.h
|
2004-01-09 00:43:53 +03:00
|
|
|
|
|
|
|
libutil_la_SOURCES = \
|
2004-01-09 11:07:28 +03:00
|
|
|
$(headers) \
|
2004-08-16 05:13:25 +04:00
|
|
|
asm.S \
|
2004-01-09 11:07:28 +03:00
|
|
|
argv.c \
|
2004-01-11 00:30:53 +03:00
|
|
|
cmd_line.c \
|
2004-06-17 00:03:05 +04:00
|
|
|
common_cmd_line.c \
|
2004-01-11 00:18:25 +03:00
|
|
|
few.c \
|
2004-01-14 21:24:30 +03:00
|
|
|
if.c \
|
2004-06-15 23:07:45 +04:00
|
|
|
malloc.c \
|
2004-07-14 22:04:31 +04:00
|
|
|
numtostr.c \
|
2004-01-14 09:42:24 +03:00
|
|
|
output.c \
|
2004-01-09 11:03:27 +03:00
|
|
|
path.c \
|
2004-08-11 11:04:38 +04:00
|
|
|
pack.c \
|
2004-08-11 02:41:17 +04:00
|
|
|
printf.c \
|
2004-06-29 08:50:40 +04:00
|
|
|
proc_info.c \
|
2004-05-20 17:54:14 +04:00
|
|
|
sys_info.c \
|
2004-05-26 06:23:01 +04:00
|
|
|
os_path.c \
|
|
|
|
os_create_dirpath.c \
|
2004-08-20 03:34:46 +04:00
|
|
|
pow2.c \
|
2004-06-29 08:52:33 +04:00
|
|
|
session_dir.c \
|
2004-01-09 11:07:28 +03:00
|
|
|
strncpy.c
|
2004-01-09 00:43:53 +03:00
|
|
|
|
|
|
|
# Conditionally install the header files
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
2004-06-17 22:21:08 +04:00
|
|
|
ompidir = $(includedir)/openmpi/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
|