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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
## Process this file with automake to produce Makefile.in
#
# $Id: Makefile.am,v 1.10.2.2 2008/06/04 20:37:51 hno Exp $
#
if NEED_OWN_SNPRINTF
SNPRINTFSOURCE=snprintf.c
else
SNPRINTFSOURCE=
endif
if NEED_OWN_STRSEP
STRSEPSOURCE=strsep.c
else
STRSEPSOURCE=
endif
if ENABLE_WIN32SPECIFIC
LIBSSPWIN32=libsspwin32.a
else
LIBSSPWIN32=
endif
if ENABLE_MINGW32SPECIFIC
WIN32SRC = win32lib.c
else
WIN32SRC=
endif
EXTRA_LIBRARIES = \
libdlmalloc.a \
libregex.a \
libsspwin32.a
noinst_LIBRARIES = \
@LIBDLMALLOC@ \
libmiscutil.a \
libntlmauth.a \
@LIBREGEX@ \
$(LIBSSPWIN32)
#
# dirent.c, ecnrypt.c and getopt.c are needed for native Windows support.
#
EXTRA_libmiscutil_a_SOURCES = \
dirent.c \
encrypt.c \
getopt.c \
snprintf.c \
strsep.c \
win32lib.c
libmiscutil_a_SOURCES = \
Array.c \
base64.c \
getfullhostname.c \
hash.c \
heap.c \
html_quote.c \
iso3307.c \
md5.c \
radix.c \
rfc1035.c \
rfc1123.c \
rfc1738.c \
rfc2617.c \
safe_inet_addr.c \
$(SNPRINTFSOURCE) \
splay.c \
Stack.c \
$(STRSEPSOURCE) \
stub_memaccount.c \
util.c \
uudecode.c \
$(WIN32SRC)
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@
libsspwin32_a_SOURCES = \
sspwin32.c
INCLUDES = -I$(top_builddir)/include -I$(top_srcdir)/include
|