forked from a2o/snoopy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
61 lines (48 loc) · 1.02 KB
/
Makefile.am
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
### Include common Makefile configuration
#
include $(top_srcdir)/build/Makefile.am.common
### Create one library with all Snoopy filters collected in it
#
noinst_LTLIBRARIES = libsnoopy_filters_all.la
### Filter collection is made of the following files
#
# Please maintain alphabetical order, equal to what `ls` would do
#
libsnoopy_filters_all_la_SOURCES = \
noop.c \
noop.h
### Filter: exclude_spawns_of
#
if FILTER_ENABLED_exclude_spawns_of
libsnoopy_filters_all_la_SOURCES += \
exclude_spawns_of.c \
exclude_spawns_of.h
endif
### Filter: exclude_uid
#
if FILTER_ENABLED_exclude_uid
libsnoopy_filters_all_la_SOURCES += \
exclude_uid.c \
exclude_uid.h
endif
### Filter: only_root
#
if FILTER_ENABLED_only_root
libsnoopy_filters_all_la_SOURCES += \
only_root.c \
only_root.h
endif
### Filter: only_tty
#
if FILTER_ENABLED_only_tty
libsnoopy_filters_all_la_SOURCES += \
only_tty.c \
only_tty.h
endif
### Filter: only_uid
#
if FILTER_ENABLED_only_uid
libsnoopy_filters_all_la_SOURCES += \
only_uid.c \
only_uid.h
endif