1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
## Process this file with automake to produce Makefile.in
#
# $Id: Makefile.am,v 1.3.2.2 2004/08/09 13:57:00 hno Exp $
#
if NEED_OWN_SNPRINTF
SNPRINTFSOURCE=snprintf.c
else
SNPRINTFSOURCE=
endif
if NEED_OWN_MD5
MD5SOURCE=md5.c
else
MD5SOURCE=
endif
EXTRA_LIBRARIES = \
libdlmalloc.a \
libregex.a
noinst_LIBRARIES = \
@LIBDLMALLOC@ \
libmiscutil.a \
libntlmauth.a \
@LIBREGEX@
EXTRA_libmiscutil_a_SOURCES = \
md5.c \
snprintf.c
libmiscutil_a_SOURCES = \
Array.c \
base64.c \
getfullhostname.c \
hash.c \
heap.c \
html_quote.c \
iso3307.c \
$(MD5SOURCE) \
radix.c \
rfc1035.c \
rfc1123.c \
rfc1738.c \
rfc2617.c \
safe_inet_addr.c \
$(SNPRINTFSOURCE) \
splay.c \
Stack.c \
stub_memaccount.c \
util.c \
uudecode.c
libmiscutil_a_LIBADD = \
@LIBOBJS@
# $(top_srcdir)/include/version.h should be a dependency
libregex_a_SOURCES = \
GNUregex.c
libdlmalloc_a_SOURCES = \
dlmalloc.c
libntlmauth_a_SOURCES = \
ntlmauth.c
libntlmauth_a_LIBADD = \
@LIBOBJS@
INCLUDES = -I$(top_builddir)/include -I$(top_srcdir)/include
|