1## $Id
2AUTOMAKE_OPTIONS=foreign no-dependencies
3
4INCLUDES = -I../include -I${srcdir}/../libs
5
6dynamicpreprocessordir = ${libdir}/snort_dynamicpreprocessor
7
8dynamicpreprocessor_LTLIBRARIES = libsf_sdf_preproc.la
9
10libsf_sdf_preproc_la_LDFLAGS = -export-dynamic -module @XCCFLAGS@
11if SO_WITH_STATIC_LIB
12libsf_sdf_preproc_la_LIBADD = ../libsf_dynamic_preproc.la
13else
14nodist_libsf_sdf_preproc_la_SOURCES = \
15../include/sf_dynamic_preproc_lib.c \
16../include/sfPolicyUserData.c
17endif
18
19libsf_sdf_preproc_la_SOURCES = \
20spp_sdf.c \
21spp_sdf.h \
22sdf_pattern_match.c \
23sdf_pattern_match.h \
24sdf_credit_card.c \
25sdf_credit_card.h \
26sdf_us_ssn.c \
27sdf_us_ssn.h \
28sdf_detection_option.c \
29sdf_detection_option.h
30
31EXTRA_DIST = \
32sf_sdf.vcxproj \
33sf_sdf.dsp
34
35all-local: $(LTLIBRARIES)
36	$(MAKE) DESTDIR=`pwd`/../build install-dynamicpreprocessorLTLIBRARIES
37
38