Snort_AIPreproc/Makefile.am

67 lines
2.1 KiB
Makefile
Raw Normal View History

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
libsf_ai_preproc_la_CFLAGS = -I./uthash -I./base64 -I./include ${LIBXML2_INCLUDES} ${LIBGRAPH_INCLUDES} -DDYNAMIC_PLUGIN -D_XOPEN_SOURCE -D_GNU_SOURCE -fvisibility=hidden -fno-strict-aliasing -Wall -pedantic -pedantic-errors -std=c99 -fstack-protector
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 = \
2010-09-21 16:27:46 +02:00
alert_history.c \
2010-09-05 15:27:35 +02:00
alert_parser.c \
base64/base64.c \
base64/cdecode.c \
base64/cencode.c \
bayesian.c \
2010-09-05 15:27:35 +02:00
cluster.c \
2010-09-11 02:12:39 +02:00
correlation.c \
2010-09-05 15:27:35 +02:00
db.c \
mysql.c \
outdb.c \
2010-09-16 17:11:46 +02:00
postgresql.c \
2010-09-05 15:27:35 +02:00
regex.c \
spp_ai.c \
2010-10-07 12:19:21 +02:00
stream.c \
webserv.c
2010-09-05 15:27:35 +02:00
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
install-data-hook:
mkdir -p "${SHARE_PREFIX}/htdocs"
mkdir -p "${SHARE_PREFIX}/htdocs/js"
install -m 0644 "${PWD}/htdocs/index.html" "${SHARE_PREFIX}/htdocs"
install -m 0755 "${PWD}/htdocs/pcap.cgi" "${SHARE_PREFIX}/htdocs"
install -m 0644 "${PWD}/htdocs/js/Curry-1.0.1.js" "${SHARE_PREFIX}/htdocs/js"
install -m 0644 "${PWD}/htdocs/js/dracula_algorithms.js" "${SHARE_PREFIX}/htdocs/js"
install -m 0644 "${PWD}/htdocs/js/dracula_graffle.js" "${SHARE_PREFIX}/htdocs/js"
install -m 0644 "${PWD}/htdocs/js/dracula_graph.js" "${SHARE_PREFIX}/htdocs/js"
install -m 0644 "${PWD}/htdocs/js/raphael.js" "${SHARE_PREFIX}/htdocs/js"
install -m 0644 "${PWD}/htdocs/js/seedrandom.js" "${SHARE_PREFIX}/htdocs/js"