mirror of
https://github.com/BlackLight/Snort_AIPreproc.git
synced 2024-11-13 04:07:15 +01:00
31 lines
877 B
Text
31 lines
877 B
Text
|
## 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 = -D_XOPEN_SOURCE -D_GNU_SOURCE -DDYNAMIC_PLUGIN -DSUP_IP6 -fvisibility=hidden -fno-strict-aliasing -Wall -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 \
|
||
|
db.c \
|
||
|
mysql.c \
|
||
|
regex.c \
|
||
|
spp_ai.c \
|
||
|
stream.c
|
||
|
|
||
|
ACLOCAL_AMFLAGS = -I m4
|
||
|
# AM_CFLAGS = -DHAVE_CONFIG_H -DDYNAMIC_PLUGIN -DSUP_IP6 -fvisibility=hidden -fno-strict-aliasing -Wall -fstack-protector
|
||
|
INCLUDES = -I./uthash -I./include
|
||
|
|