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
|
noinst_LTLIBRARIES = libutils.la
# TODO remove the openssl dependency! It's only there for base64 encoding.
AM_CFLAGS = $(PCRE_CFLAGS) $(OPENSSL_CFLAGS)
AM_CPPFLAGS = $(PCRE_CPPFLAGS) $(OPENSSL_CPPFLAGS)
AM_LDFLAGS = $(PCRE_LDFLAGS) $(OPENSSL_LDFLAGS)
libutils_la_LIBADD = ../libcompat/libcompat.la
libutils_la_LIBS = $(PCRE_LIBS) $(OPENSSL_LIBS)
libutils_la_SOURCES = \
alloc.c alloc.h \
atexit.c atexit.h \
compiler.h \
deprecated.h \
dir.h dir_priv.h \
hashes.c hashes.h hash_method.h \
sequence.c sequence.h \
set.c set.h \
statistics.c statistics.h \
string_lib.c string_lib.h \
pcre_include.h \
platform.h \
proc_keyvalue.c proc_keyvalue.h \
bool.h \
json.c json.h \
refcount.c refcount.h \
list.c list.h \
logging.c logging.h logging_priv.h \
buffer.c buffer.h \
ip_address.c ip_address.h \
map.c map.h map_common.h \
array_map.c array_map_priv.h \
hash_map.c hash_map_priv.h \
misc_lib.c misc_lib.h \
writer.c writer.h \
csv_writer.c csv_writer.h \
csv_parser.c csv_parser.h \
xml_writer.c xml_writer.h \
file_lib.c file_lib.h \
man.c man.h \
rb-tree.c rb-tree.h \
mustache.c mustache.h \
cfversion.c cfversion.h \
unicode.c unicode.h \
hash.c hash.h \
queue.c queue.h \
ring_buffer.c ring_buffer.h \
regex.c regex.h \
encode.c encode.h \
printsize.h
if !NT
libutils_la_SOURCES += unix_dir.c
endif
if CYGWIN
libutils_la_SOURCES += unix_dir.c
endif
CLEANFILES = *.gcno *.gcda
#
# Some basic clean ups
#
MOSTLYCLEANFILES = *~ *.orig *.rej
#
# Get everything removed down to where rebuilding requires:
# "aclocal; autoconf; autoheader; automake --add-missing"
# "configure; make; make install"
#
MAINTAINERCLEANFILES = config.h.in
|