summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorTodd C. Miller <Todd.Miller@sudo.ws>2022-10-21 09:12:11 -0600
committerTodd C. Miller <Todd.Miller@sudo.ws>2022-10-21 09:12:11 -0600
commitc05d714cd1295999bd63d6bf24f06288a0017831 (patch)
treef2fb00260ef0c25cfc4b5fee3fa9ec45696df223 /Makefile.in
parentd6541045062a80e768e23c30a8080e3c74e003bc (diff)
downloadsudo-c05d714cd1295999bd63d6bf24f06288a0017831.tar.gz
Build the sample plugin but do not install it by default.
We no longer install the sample approval plugin.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in16
1 files changed, 8 insertions, 8 deletions
diff --git a/Makefile.in b/Makefile.in
index bf884ae6e..c4055c3be 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -58,10 +58,10 @@ python_version = @PYTHON_VERSION@
SUBDIRS = lib/util @ZLIB_SRC@ lib/eventlog lib/fuzzstub lib/iolog \
lib/protobuf-c @LOGSRV_SRC@ @LOGSRVD_SRC@ plugins/audit_json \
- plugins/group_file plugins/sample_approval plugins/sudoers \
- plugins/system_group @PYTHON_PLUGIN_SRC@ src include docs examples
+ plugins/group_file plugins/sudoers plugins/system_group \
+ @PYTHON_PLUGIN_SRC@ src include docs examples
-SAMPLES = plugins/sample
+SAMPLES = plugins/sample plugins/sample_approval
VERSION = @PACKAGE_VERSION@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
@@ -107,13 +107,13 @@ PVS_IGNORE = 'V707,V011,V002,V536,V568'
PVS_LOG_OPTS = -a 'GA:1,2' -e -t errorfile -d $(PVS_IGNORE)
all: config.status
- for d in $(SUBDIRS); do \
+ for d in $(SUBDIRS) $(SAMPLES); do \
(cd $$d && exec $(MAKE) $@) && continue; \
exit $$?; \
done
check check-verbose check-fuzzer fuzz pre-install: config.status
- for d in $(SUBDIRS); do \
+ for d in $(SUBDIRS) $(SAMPLES); do \
(cd $$d && exec $(MAKE) $@) && continue; \
exit $$?; \
done
@@ -132,7 +132,7 @@ spell:
cppcheck: config.status
rval=0; \
- for d in $(SUBDIRS); do \
+ for d in $(SUBDIRS) $(SAMPLES); do \
echo checking $$d; \
(cd $$d && exec $(MAKE) CPPCHECK_OPTS="$(CPPCHECK_OPTS)" $@) || rval=`expr $$rval + $$?`; \
done; \
@@ -140,7 +140,7 @@ cppcheck: config.status
splint: config.status
rval=0; \
- for d in $(SUBDIRS); do \
+ for d in $(SUBDIRS) $(SAMPLES); do \
echo splinting $$d; \
(cd $$d && exec $(MAKE) SPLINT_OPTS="$(SPLINT_OPTS)" $@) || rval=`expr $$rval + $$?`; \
done; \
@@ -163,7 +163,7 @@ cov-analyze: cov-upload
pvs-studio: config.status
files=; \
rval=0; \
- for d in $(SUBDIRS); do \
+ for d in $(SUBDIRS) $(SAMPLES); do \
(cd $$d && exec $(MAKE) PVS_IGNORE="$(PVS_IGNORE)" pvs-log-files) || rval=`expr $$rval + $$?`; \
for f in $$d/*.plog; do \
if test "$$f" != "$$d/*.plog"; then \