1## $Id
2AUTOMAKE_OPTIONS=foreign no-dependencies
3
4INCLUDES = -I../include -I${srcdir}/../libs
5
6dynamicpreprocessordir = ${libdir}/snort_dynamicpreprocessor
7
8dynamicpreprocessor_LTLIBRARIES = libsf_s7commplus_preproc.la
9
10libsf_s7commplus_preproc_la_LDFLAGS = -export-dynamic -module @XCCFLAGS@
11if SO_WITH_STATIC_LIB
12libsf_s7commplus_preproc_la_LIBADD = ../libsf_dynamic_preproc.la
13else
14nodist_libsf_s7commplus_preproc_la_SOURCES = \
15../include/sf_dynamic_preproc_lib.c \
16../include/sfPolicyUserData.c
17endif
18
19libsf_s7commplus_preproc_la_SOURCES = \
20spp_s7comm.c \
21spp_s7comm.h \
22s7comm_decode.c \
23s7comm_decode.h \
24s7comm_roptions.c \
25s7comm_roptions.h \
26s7comm_paf.c \
27s7comm_paf.h
28
29#EXTRA_DIST = \
30#sf_s7comm.dsp
31
32all-local: $(LTLIBRARIES)
33	$(MAKE) DESTDIR=`pwd`/../build install-dynamicpreprocessorLTLIBRARIES
34
35