summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorTodd C. Miller <Todd.Miller@sudo.ws>2020-10-26 15:24:35 -0600
committerTodd C. Miller <Todd.Miller@sudo.ws>2020-10-26 15:24:35 -0600
commit6a2d96a047308113fa4b97ebb02927ac153888dc (patch)
tree7ebdef5f9cbfeeb20193aa368babf4fc9ac77737 /Makefile.in
parentbd71ffde6fb2143f1f4e9f6c4204244542663125 (diff)
downloadsudo-6a2d96a047308113fa4b97ebb02927ac153888dc.tar.gz
Refactor eventlog code into a library
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in13
1 files changed, 7 insertions, 6 deletions
diff --git a/Makefile.in b/Makefile.in
index be8f44a93..d6b73a596 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -56,10 +56,10 @@ shlib_mode = @SHLIB_MODE@
# Version of python detected by configure (major.minor)
python_version = @PYTHON_VERSION@
-SUBDIRS = lib/util @ZLIB_SRC@ lib/iolog @LOGSRV_SRC@ @LOGSRVD_SRC@ \
- plugins/audit_json plugins/group_file plugins/sample_approval \
- plugins/sudoers plugins/system_group @PYTHON_PLUGIN_SRC@ src \
- include doc examples
+SUBDIRS = lib/util @ZLIB_SRC@ lib/eventlog lib/iolog @LOGSRV_SRC@ \
+ @LOGSRVD_SRC@ plugins/audit_json plugins/group_file \
+ plugins/sample_approval plugins/sudoers plugins/system_group \
+ @PYTHON_PLUGIN_SRC@ src include doc examples
SAMPLES = plugins/sample
@@ -210,7 +210,7 @@ siglist.c signame.c:
depend: siglist.c signame.c
$(scriptdir)/mkdep.pl \
--srcdir=$(abs_top_srcdir) --builddir=$(abs_top_builddir) \
- lib/util/Makefile.in lib/zlib/Makefile.in \
+ lib/util/Makefile.in lib/zlib/Makefile.in lib/eventlog/Makefile.in \
lib/iolog/Makefile.in lib/logsrv/Makefile.in logsrvd/Makefile.in \
plugins/group_file/Makefile.in plugins/sample/Makefile.in \
plugins/sudoers/Makefile.in plugins/system_group/Makefile.in \
@@ -218,6 +218,7 @@ depend: siglist.c signame.c
src/Makefile.in && \
$(top_builddir)/config.status --file $(top_builddir)/lib/util/Makefile \
--file $(top_builddir)/lib/zlib/Makefile \
+ --file $(top_builddir)/lib/eventlog/Makefile \
--file $(top_builddir)/lib/iolog/Makefile \
--file $(top_builddir)/lib/logsrv/Makefile \
--file $(top_builddir)/logsrvd/Makefile \
@@ -275,7 +276,7 @@ update-pot:
-e 's/^mailsub="/gettext "/p' configure.ac \
>> confstr.sh; \
tmpfiles=confstr.sh; \
- cfiles="lib/iolog/*.c logsrvd/*.c plugins/sudoers/*.c plugins/sudoers/auth/*.c";; \
+ cfiles="lib/eventlog/*.c lib/iolog/*.c logsrvd/*.c plugins/sudoers/*.c plugins/sudoers/auth/*.c";; \
*) echo unknown domain $$domain; continue;; \
esac; \
$(XGETTEXT) $(XGETTEXT_OPTS) -d$$domain $$cfiles $$tmpfiles -o $$pot.tmp; \