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-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-01-11 00:30:53 +03:00
|
|
|
cmd_line.h \
|
2004-01-11 00:18:25 +03:00
|
|
|
few.h \
|
2004-01-09 11:07:28 +03:00
|
|
|
lam_log.h \
|
|
|
|
malloc.h \
|
2004-01-09 11:03:27 +03:00
|
|
|
path.h \
|
2004-01-09 11:07:28 +03:00
|
|
|
reactor.h \
|
|
|
|
strncpy.h
|
2004-01-09 00:43:53 +03:00
|
|
|
|
|
|
|
libutil_la_SOURCES = \
|
2004-01-09 11:07:28 +03:00
|
|
|
$(headers) \
|
|
|
|
argv.c \
|
2004-01-11 00:30:53 +03:00
|
|
|
cmd_line.c \
|
2004-01-11 00:18:25 +03:00
|
|
|
few.c \
|
2004-01-09 11:07:28 +03:00
|
|
|
lam_log.c \
|
2004-01-09 11:03:27 +03:00
|
|
|
path.c \
|
2004-01-09 11:07:28 +03:00
|
|
|
reactor.c \
|
|
|
|
strncpy.c
|
2004-01-09 00:43:53 +03:00
|
|
|
|
|
|
|
# Conditionally install the header files
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
|
|
|
lamdir = $(includedir)/lam/lam/util
|
|
|
|
lam_HEADERS = $(headers)
|
|
|
|
else
|
|
|
|
lamdir = $(includedir)
|
|
|
|
endif
|