2010-09-05 15:27:35 +02:00
|
|
|
## Process this file with automake for generating Makefile.in
|
|
|
|
|
|
|
|
AUTOMAKE_OPTIONS=foreign no-dependencies
|
|
|
|
|
|
|
|
libdir = ${exec_prefix}/lib/snort_dynamicpreprocessor
|
|
|
|
lib_LTLIBRARIES = libsf_ai_preproc.la
|
2010-09-14 19:24:03 +02:00
|
|
|
libsf_ai_preproc_la_CFLAGS = -I./uthash -I./include ${LIBXML2_INCLUDES} ${LIBGRAPH_INCLUDES} -DDYNAMIC_PLUGIN -D_XOPEN_SOURCE -D_GNU_SOURCE -fvisibility=hidden -fno-strict-aliasing -Wall -pedantic -pedantic-errors -fstack-protector
|
2010-09-05 23:54:22 +02:00
|
|
|
libsf_ai_preproc_la_LDFLAGS = -module -export-dynamic
|
2010-09-05 15:27:35 +02:00
|
|
|
|
|
|
|
BUILT_SOURCES = \
|
|
|
|
include/sf_dynamic_preproc_lib.c \
|
|
|
|
include/sfPolicyUserData.c
|
|
|
|
|
|
|
|
nodist_libsf_ai_preproc_la_SOURCES = \
|
|
|
|
include/sf_dynamic_preproc_lib.c \
|
|
|
|
include/sfPolicyUserData.c
|
|
|
|
|
|
|
|
libsf_ai_preproc_la_SOURCES = \
|
|
|
|
alert_parser.c \
|
|
|
|
cluster.c \
|
2010-09-11 02:12:39 +02:00
|
|
|
correlation.c \
|
2010-09-05 15:27:35 +02:00
|
|
|
db.c \
|
|
|
|
mysql.c \
|
2010-09-16 17:11:46 +02:00
|
|
|
postgresql.c \
|
2010-09-05 15:27:35 +02:00
|
|
|
regex.c \
|
|
|
|
spp_ai.c \
|
|
|
|
stream.c
|
|
|
|
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
2010-09-15 14:07:38 +02:00
|
|
|
EXTRA_DIST = README INSTALL ChangeLog AUTHORS COPYING Doxyfile NEWS TODO doc etc include uthash corr_rules *.h
|
|
|
|
|
2010-09-11 02:12:39 +02:00
|
|
|
corr_rulesdir = ${CORR_RULES_PREFIX}
|
|
|
|
corr_rules_DATA = corr_rules/*
|
2010-09-05 15:27:35 +02:00
|
|
|
|
2010-09-15 14:07:38 +02:00
|
|
|
sharedir = ${SHARE_PREFIX}
|
|
|
|
share_DATA = README INSTALL AUTHORS COPYING NEWS TODO ChangeLog
|
|
|
|
|
2010-09-16 17:11:46 +02:00
|
|
|
doc:
|
2010-09-16 11:14:52 +02:00
|
|
|
if test ! -z "${DOC_PREFIX}"; then \
|
2010-09-16 17:11:46 +02:00
|
|
|
doxygen; \
|
|
|
|
fi
|
2010-09-16 11:14:52 +02:00
|
|
|
|
2010-09-16 17:11:46 +02:00
|
|
|
doc-install:
|
2010-09-16 11:14:52 +02:00
|
|
|
if test ! -z "${DOC_PREFIX}"; then \
|
2010-09-16 17:11:46 +02:00
|
|
|
mkdir -p "${DOC_PREFIX}"; \
|
|
|
|
cp -r doc/* "${DOC_PREFIX}"; \
|
|
|
|
fi
|
2010-09-16 11:14:52 +02:00
|
|
|
|