2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-22 01:49:11 +00:00

Add missing depend target

This commit is contained in:
Todd C. Miller 2019-11-02 12:00:07 -06:00
parent 655fdde22b
commit 676d3fc67b
2 changed files with 10 additions and 12 deletions

View File

@ -27,21 +27,9 @@ top_srcdir = @top_srcdir@
incdir = $(top_srcdir)/include
cross_compiling = @CROSS_COMPILING@
# Where to install things...
prefix = @prefix@
exec_prefix = @exec_prefix@
bindir = @bindir@
sbindir = @sbindir@
sysconfdir = @sysconfdir@
libexecdir = @libexecdir@
datarootdir = @datarootdir@
localstatedir = @localstatedir@
# Compiler & tools to use
CC = @CC@
LIBTOOL = @LIBTOOL@
SED = @SED@
AWK = @AWK@
# Libraries
LT_LIBS = $(top_builddir)/lib/util/libsudo_util.la
@ -111,6 +99,11 @@ pvs-log-files: $(POBJS)
pvs-studio: $(POBJS)
plog-converter $(PVS_LOG_OPTS) $(POBJS)
depend:
$(top_srcdir)/mkdep.pl --srcdir=$(top_srcdir) \
--builddir=`pwd`/$(top_builddir) lib/iolog/Makefile.in
cd $(top_builddir) && ./config.status --file lib/iolog/Makefile
Makefile: $(srcdir)/Makefile.in
cd $(top_builddir) && ./config.status --file lib/iolog/Makefile

View File

@ -122,6 +122,11 @@ VERSION = @PACKAGE_VERSION@
all: $(PROGS)
depend:
$(top_srcdir)/mkdep.pl --srcdir=$(top_srcdir) \
--builddir=`pwd`/$(top_builddir) logsrvd/Makefile.in
cd $(top_builddir) && ./config.status --file logsrvd/Makefile
Makefile: $(srcdir)/Makefile.in
cd $(top_builddir) && ./config.status --file logsrvd/Makefile