mirror of
https://github.com/BlackLight/Snort_AIPreproc.git
synced 2024-11-13 04:07:15 +01:00
60 lines
1.5 KiB
Makefile
60 lines
1.5 KiB
Makefile
## 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
|
|
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
|
|
libsf_ai_preproc_la_LDFLAGS = -module -export-dynamic
|
|
|
|
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 \
|
|
correlation.c \
|
|
db.c \
|
|
mysql.c \
|
|
regex.c \
|
|
spp_ai.c \
|
|
stream.c
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
EXTRA_DIST = README INSTALL ChangeLog AUTHORS COPYING Doxyfile NEWS TODO doc etc include uthash corr_rules *.h
|
|
|
|
corr_rulesdir = ${CORR_RULES_PREFIX}
|
|
corr_rules_DATA = corr_rules/*
|
|
|
|
docdir = ${DOC_PREFIX}
|
|
doc_DATA = doc/html/*.html doc/html/*.css doc/html/*.png
|
|
|
|
sharedir = ${SHARE_PREFIX}
|
|
share_DATA = README INSTALL AUTHORS COPYING NEWS TODO ChangeLog
|
|
|
|
install-docData:
|
|
if test ! -z "${DOC_PREFIX}"; then \
|
|
cp -r ./doxygen "$(docdir)/doxygen"; \
|
|
else \
|
|
exit 0; \
|
|
fi
|
|
|
|
uninstall-docData:
|
|
if test ! -z "${DOC_PREFIX}"; then \
|
|
rm -rf "$(docdir)"; \
|
|
else \
|
|
exit 0; \
|
|
fi
|
|
|
|
all:
|
|
if test ! -z "${DOC_PREFIX}"; then \
|
|
if test ! -d "./doc"; then \
|
|
doxygen; \
|
|
fi; \
|
|
fi
|
|
|