-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
33 lines (23 loc) · 742 Bytes
/
Makefile.am
File metadata and controls
33 lines (23 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
## $Id
AUTOMAKE_OPTIONS=foreign no-dependencies
INCLUDES = -I../include
noinst_dynamicpreprocessordir = ${libdir}/snort_dynamicpreprocessor
noinst_dynamicpreprocessor_LTLIBRARIES = lib_sfdynamic_preprocessor_example.la
lib_sfdynamic_preprocessor_example_la_LDFLAGS = -export-dynamic
BUILT_SOURCES = \
sf_dynamic_preproc_lib.c \
sfPolicyUserData.c
nodist_lib_sfdynamic_preprocessor_example_la_SOURCES = \
sf_dynamic_preproc_lib.c \
sfPolicyUserData.c \
spp_example.c \
sf_preproc_info.h
EXTRA_DIST = \
spp_example.c \
sf_preproc_info.h
sf_dynamic_preproc_lib.c: ../include/sf_dynamic_preproc_lib.c
cp $? $@
sfPolicyUserData.c: ../include/sfPolicyUserData.c
cp $? $@
clean-local:
rm -f sf_dynamic_preproc_lib.c sfPolicyUserData.c