Imported Upstream version 1.8.5
[debian/sudo] / plugins / sudoers / Makefile.in
1 #
2 # Copyright (c) 1996, 1998-2005, 2007-2012
3 #       Todd C. Miller <Todd.Miller@courtesan.com>
4 #
5 # Permission to use, copy, modify, and distribute this software for any
6 # purpose with or without fee is hereby granted, provided that the above
7 # copyright notice and this permission notice appear in all copies.
8 #
9 # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
17 #
18 # Sponsored in part by the Defense Advanced Research Projects
19 # Agency (DARPA) and Air Force Research Laboratory, Air Force
20 # Materiel Command, USAF, under agreement number F39502-99-1-0512.
21 #
22 # @configure_input@
23 #
24
25 #### Start of system configuration section. ####
26
27 srcdir = @srcdir@
28 devdir = @devdir@
29 authdir = $(srcdir)/auth
30 top_builddir = @top_builddir@
31 top_srcdir = @top_srcdir@
32 incdir = $(top_srcdir)/include
33 docdir = @docdir@
34 timedir = @timedir@
35
36 # Compiler & tools to use
37 CC = @CC@
38 LIBTOOL = @LIBTOOL@
39 FLEX = @FLEX@
40 YACC = @YACC@
41 PERL = perl
42
43 # Our install program supports extra flags...
44 INSTALL = $(SHELL) $(top_srcdir)/install-sh -c
45
46 # Libraries
47 LT_LIBS = $(top_builddir)/common/libcommon.la $(LIBOBJDIR)libreplace.la
48 LIBS = $(LT_LIBS) @LIBINTL@
49 NET_LIBS = @NET_LIBS@
50 SUDOERS_LIBS = @SUDOERS_LIBS@ @AFS_LIBS@ @GETGROUPS_LIB@ $(LIBS) $(NET_LIBS) @ZLIB@
51 REPLAY_LIBS = @REPLAY_LIBS@ @ZLIB@
52
53 # C preprocessor flags
54 CPPFLAGS = -I$(incdir) -I$(top_builddir) -I$(devdir) -I$(srcdir) -I$(top_srcdir) @CPPFLAGS@
55
56 # Usually -O and/or -g
57 CFLAGS = @CFLAGS@
58
59 # Flags to pass to the link stage
60 LDFLAGS = @LDFLAGS@
61 SUDOERS_LDFLAGS = $(LDFLAGS) @SUDOERS_LDFLAGS@
62 LTLDFLAGS = @LTLDFLAGS@
63
64 # Where to install things...
65 prefix = @prefix@
66 exec_prefix = @exec_prefix@
67 bindir = @bindir@
68 sbindir = @sbindir@
69 sysconfdir = @sysconfdir@
70 libexecdir = @libexecdir@
71 datarootdir = @datarootdir@
72 localedir = @localedir@
73 localstatedir = @localstatedir@
74
75 # File extension for shared objects
76 soext = @SOEXT@
77
78 # Directory in which to install the sudoers plugin
79 plugindir = @PLUGINDIR@
80
81 # Directory in which to install the sudoers file
82 sudoersdir = $(sysconfdir)
83
84 # Directory in which to install sudoreplay.
85 replaydir = $(bindir)
86
87 # Directory in which to install visudo
88 visudodir = $(sbindir)
89
90 # User and group ids the installed files should be "owned" by
91 install_uid = 0
92 install_gid = 0
93
94 # User, group, and mode the sudoers file should be "owned" by (configure)
95 sudoers_uid = @SUDOERS_UID@
96 sudoers_gid = @SUDOERS_GID@
97 sudoers_mode = @SUDOERS_MODE@
98
99 # Pass in paths and uid/gid + OS dependent defines
100 DEFS = @OSDEFS@ -D_PATH_SUDOERS=\"$(sudoersdir)/sudoers\" \
101        -DSUDOERS_UID=$(sudoers_uid) -DSUDOERS_GID=$(sudoers_gid) \
102        -DSUDOERS_MODE=$(sudoers_mode) -DLOCALEDIR=\"$(localedir)\"
103
104 # Set to non-empty for development mode
105 DEVEL = @DEVEL@
106
107 #### End of system configuration section. ####
108
109 SHELL = @SHELL@
110
111 PROGS = sudoers.la visudo sudoreplay testsudoers
112
113 TEST_PROGS = check_iolog_path check_fill check_wrap check_addr
114
115 AUTH_OBJS = sudo_auth.lo @AUTH_OBJS@
116
117 LIBPARSESUDOERS_OBJS = alias.lo audit.lo defaults.lo gram.lo match.lo \
118                        match_addr.lo pwutil.lo timestr.lo toke.lo \
119                        toke_util.lo redblack.lo
120
121 SUDOERS_OBJS = $(AUTH_OBJS) boottime.lo check.lo env.lo goodpath.lo \
122                group_plugin.lo find_path.lo interfaces.lo logging.lo \
123                logwrap.lo parse.lo set_perms.lo sudoers.lo sudo_nss.lo \
124                iolog.lo iolog_path.lo @SUDOERS_OBJS@
125
126 VISUDO_OBJS = visudo.o goodpath.o find_path.o error.o
127
128 REPLAY_OBJS = getdate.o sudoreplay.o error.o
129
130 TEST_OBJS = interfaces.o testsudoers.o tsgetgrpw.o error.o group_plugin.o \
131             net_ifs.o
132
133 CHECK_ADDR_OBJS = check_addr.o match_addr.o interfaces.o error.o
134
135 CHECK_FILL_OBJS = check_fill.o toke_util.o error.o
136
137 CHECK_IOLOG_PATH_OBJS = check_iolog_path.o error.o iolog_path.o pwutil.o \
138                         redblack.o
139
140 CHECK_WRAP_OBJS = check_wrap.o logwrap.o error.o
141
142 LIBOBJDIR = $(top_builddir)/@ac_config_libobj_dir@/
143
144 VERSION = @PACKAGE_VERSION@
145 PACKAGE_TARNAME = @PACKAGE_TARNAME@
146
147 all: $(PROGS)
148
149 .SUFFIXES: .o .c .h .l .y .lo
150
151 .c.o:
152         $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $<
153
154 .c.lo:
155         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $<
156
157 # Prevent default rules from building .c files from .l and .y files
158 .l.c:
159
160 .y.c:
161
162 Makefile: $(srcdir)/Makefile.in
163         (cd $(top_builddir) && ./config.status --file plugins/sudoers/Makefile)
164
165 libparsesudoers.la: $(LIBPARSESUDOERS_OBJS)
166         $(LIBTOOL) --mode=link $(CC) -o $@ $(LIBPARSESUDOERS_OBJS) -no-install
167
168 sudoers.la: $(SUDOERS_OBJS) $(LT_LIBS) libparsesudoers.la
169         $(LIBTOOL) @LT_STATIC@ --mode=link $(CC) $(SUDOERS_LDFLAGS) $(LTLDFLAGS) -o $@ $(SUDOERS_OBJS) libparsesudoers.la $(SUDOERS_LIBS) -module -export-symbols $(srcdir)/sudoers.sym -avoid-version -rpath $(plugindir)
170
171 visudo: libparsesudoers.la $(VISUDO_OBJS) $(LT_LIBS)
172         $(LIBTOOL) --mode=link $(CC) -o $@ $(VISUDO_OBJS) $(LDFLAGS) libparsesudoers.la $(LIBS) $(NET_LIBS)
173
174 sudoreplay: timestr.lo $(REPLAY_OBJS) $(LT_LIBS)
175         $(LIBTOOL) --mode=link $(CC) -o $@ $(REPLAY_OBJS) $(LDFLAGS) timestr.lo $(REPLAY_LIBS) $(LIBS)
176
177 testsudoers: libparsesudoers.la $(TEST_OBJS) $(LT_LIBS)
178         $(LIBTOOL) --mode=link $(CC) -o $@ $(TEST_OBJS) $(LDFLAGS) libparsesudoers.la $(LIBS) $(NET_LIBS) @LIBDL@
179
180 check_addr: $(CHECK_ADDR_OBJS) $(LT_LIBS)
181         $(LIBTOOL) --mode=link $(CC) -o $@ $(CHECK_ADDR_OBJS) $(LDFLAGS) $(LIBS) $(NET_LIBS)
182
183 check_iolog_path: $(CHECK_IOLOG_PATH_OBJS) $(LT_LIBS)
184         $(LIBTOOL) --mode=link $(CC) -o $@ $(CHECK_IOLOG_PATH_OBJS) $(LDFLAGS) $(LIBS)
185
186 check_fill: $(CHECK_FILL_OBJS) $(LT_LIBS)
187         $(LIBTOOL) --mode=link $(CC) -o $@ $(CHECK_FILL_OBJS) $(LDFLAGS) $(LIBS)
188
189 check_wrap: $(CHECK_WRAP_OBJS) $(LT_LIBS)
190         $(LIBTOOL) --mode=link $(CC) -o $@ $(CHECK_WRAP_OBJS) $(LDFLAGS) $(LIBS)
191
192 GENERATED = gram.h gram.c toke.c def_data.c def_data.h getdate.c
193
194 $(devdir)/gram.c $(devdir)/gram.h: $(srcdir)/gram.y
195         @if [ -n "$(DEVEL)" ]; then \
196             if test "$(srcdir)" = "."; then \
197                 gram_y="gram.y"; \
198             else \
199                 gram_y="$(srcdir)/gram.y"; \
200             fi; \
201             cmd='$(YACC) -d '"$$gram_y"'; echo "#include <config.h>" > $(devdir)/gram.c; sed "s/^\\(#line .*\\) \"y\\.tab\\.c\"/\1 \"gram.c\"/" y.tab.c >> $(devdir)/gram.c; rm -f y.tab.c; mv -f y.tab.h $(devdir)/gram.h'; \
202             echo "$$cmd"; eval $$cmd; \
203         fi
204
205 $(devdir)/toke.c: $(srcdir)/toke.l
206         @if [ -n "$(DEVEL)" ]; then \
207             if test "$(srcdir)" = "."; then \
208                 toke_l="toke.l"; \
209             else \
210                 toke_l="$(srcdir)/toke.l"; \
211             fi; \
212             cmd='$(FLEX) '"$$toke_l"'; echo "#include <config.h>" > $(devdir)/toke.c; cat lex.yy.c >> $(devdir)/toke.c'; \
213             echo "$$cmd"; eval $$cmd; \
214         fi
215
216 # Uncomment the lines before -@true if you intend to modify getdate.y
217 $(devdir)/getdate.c: $(srcdir)/getdate.y
218         @if [ -n "$(DEVEL)" ]; then \
219             echo "expect 10 shift/reduce conflicts"; \
220             if test "$(srcdir)" = "."; then \
221                 getdate_y="getdate.y"; \
222             else \
223                 getdate_y="$(srcdir)/getdate.y"; \
224             fi; \
225             cmd='$(YACC) '"$$getdate_y"'; echo "#include <config.h>" > $(devdir)/getdate.c; sed "s/^\\(#line .*\\) \"y\\.tab\\.c\"/\1 \"getdate.c\"/" y.tab.c >> $(devdir)/getdate.c; rm -f y.tab.c'; \
226             echo "$$cmd"; eval $$cmd; \
227         fi
228
229 # Uncomment the following if you intend to modify def_data.in
230 $(devdir)/def_data.c $(devdir)/def_data.h: $(srcdir)/def_data.in
231         @if [ -n "$(DEVEL)" ]; then \
232             cmd='$(PERL) $(srcdir)/mkdefaults -o $(devdir)/def_data $(srcdir)/def_data.in'; \
233             echo "$$cmd"; eval $$cmd; \
234         fi
235
236 sudoers: $(srcdir)/sudoers.in
237         (cd $(top_builddir) && $(SHELL) config.status --file=plugins/sudoers/$@)
238
239 pre-install:
240         @if test -r $(DESTDIR)$(sudoersdir)/sudoers; then \
241             echo "Checking existing sudoers file for syntax errors."; \
242             ./visudo -c -f $(DESTDIR)$(sudoersdir)/sudoers; \
243         fi
244
245 install: install-plugin install-binaries install-sudoers install-doc
246
247 install-dirs:
248         $(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(plugindir) \
249             $(DESTDIR)$(visudodir) $(DESTDIR)$(replaydir) \
250             $(DESTDIR)$(sudoersdir) $(DESTDIR)$(docdir) \
251             `echo $(DESTDIR)$(timedir)|sed 's,/[^/]*$$,,'`
252         $(INSTALL) -d -O $(install_uid) -G $(install_gid) -m 0700 $(DESTDIR)$(timedir)
253
254 install-binaries: visudo sudoreplay install-dirs
255         $(INSTALL) -b~ -O $(install_uid) -G $(install_gid) -M 0111 sudoreplay $(DESTDIR)$(replaydir)/sudoreplay
256         $(INSTALL) -b~ -O $(install_uid) -G $(install_gid) -M 0111 visudo $(DESTDIR)$(visudodir)/visudo
257
258 install-includes:
259
260 install-doc: install-dirs
261         @LDAP@$(INSTALL) -O $(install_uid) -G $(install_gid) -m 0555 $(srcdir)/sudoers2ldif $(DESTDIR)$(docdir)
262
263 install-plugin: sudoers.la install-dirs
264         if [ X"$(soext)" != X"" ]; then \
265             $(INSTALL) -b~ -O $(install_uid) -G $(install_gid) -m 0755 .libs/sudoers$(soext) $(DESTDIR)$(plugindir); \
266         fi
267
268 install-sudoers: install-dirs
269         $(INSTALL) -d -O $(sudoers_uid) -G $(sudoers_gid) -m 0750 \
270             $(DESTDIR)$(sudoersdir)/sudoers.d
271         test -r $(DESTDIR)$(sudoersdir)/sudoers || \
272             $(INSTALL) -O $(sudoers_uid) -G $(sudoers_gid) -m $(sudoers_mode) \
273                 sudoers $(DESTDIR)$(sudoersdir)/sudoers
274
275 uninstall:
276         -rm -f $(DESTDIR)$(plugindir)/sudoers$(soext)
277         -rm -f $(DESTDIR)$(replaydir)/sudoreplay
278         -rm -f $(DESTDIR)$(visudodir)/visudo
279         -cmp $(DESTDIR)$(sudoersdir)/sudoers $(srcdir)/sudoers >/dev/null && \
280             rm -f $(DESTDIR)$(sudoersdir)/sudoers
281
282 check: $(TEST_PROGS) visudo testsudoers
283         @-rval=0; \
284         ./check_addr $(srcdir)/regress/parser/check_addr.in; \
285         rval=`expr $$rval + $$?`; \
286         ./check_fill; \
287         rval=`expr $$rval + $$?`; \
288         ./check_iolog_path $(srcdir)/regress/iolog_path/data; \
289         rval=`expr $$rval + $$?`; \
290         ./check_wrap $(srcdir)/regress/logging/check_wrap.in > check_wrap.out; \
291         diff check_wrap.out $(srcdir)/regress/logging/check_wrap.out.ok; \
292         rval=`expr $$rval + $$?`; \
293         passed=0; failed=0; total=0; \
294             for t in $(srcdir)/regress/sudoers/*.in; do \
295                 dir=`dirname $$t`; \
296                 dirbase=`basename $$dir`; \
297                 base=`basename $$t .in`; \
298                 out="$${base}.out"; \
299                 toke="$${base}.toke"; \
300                 ./testsudoers -dt <$$t >$$out 2>$$toke; \
301                 if cmp $$out $$dir/$$out.ok >/dev/null; then \
302                     passed=`expr $$passed + 1`; \
303                     echo "$$dirbase/$$base (parse): OK"; \
304                 else \
305                     failed=`expr $$failed + 1`; \
306                     echo "$$dirbase/$$base: FAIL"; \
307                     diff $$out $$dir/$$out.ok; \
308                 fi; \
309                 total=`expr $$total + 1`; \
310                 if cmp $$toke $$dir/$$toke.ok >/dev/null; then \
311                     passed=`expr $$passed + 1`; \
312                     echo "$$dirbase/$$base (toke):  OK"; \
313                 else \
314                     failed=`expr $$failed + 1`; \
315                     echo "$$dirbase/$$base (toke):  FAIL"; \
316                     diff $$out $$dir/$$out.ok; \
317                 fi; \
318                 total=`expr $$total + 1`; \
319             done; \
320             echo "$$dirbase: $$passed/$$total tests passed; $$failed/$$total tests failed"; \
321         rval=`expr $$rval + $$failed`; \
322         passed=0; failed=0; total=0; \
323             for t in $(srcdir)/regress/*/*.sh; do \
324                 dir=`dirname $$t`; \
325                 dirbase=`basename $$dir`; \
326                 base=`basename $$t .sh`; \
327                 out="$${base}.out"; \
328                 err="$${base}.err"; \
329                 $(SHELL) $$t >$$out 2>$$err; \
330                 if cmp $$out $$dir/$$out.ok >/dev/null; then \
331                     passed=`expr $$passed + 1`; \
332                     echo "$$dirbase/$$base: OK"; \
333                 else \
334                     failed=`expr $$failed + 1`; \
335                     echo "$$dirbase/$$base: FAIL"; \
336                     diff $$out $$dir/$$out.ok; \
337                 fi; \
338                 total=`expr $$total + 1`; \
339                 if test -s $$dir/$$err.ok; then \
340                     if cmp $$err $$dir/$$err.ok >/dev/null; then \
341                         passed=`expr $$passed + 1`; \
342                         echo "$$dirbase/$$base (stderr): OK"; \
343                     else \
344                         failed=`expr $$failed + 1`; \
345                         echo "$$dirbase/$$base (stderr): FAIL"; \
346                         diff $$out $$dir/$$out.ok; \
347                     fi; \
348                     total=`expr $$total + 1`; \
349                 elif test -s $$err; then \
350                     cat $$err 1>&2; \
351                 fi; \
352             done; \
353             echo "$$dirbase: $$passed/$$total tests passed; $$failed/$$total tests failed"; \
354             rval=`expr $$rval + $$failed`; exit $$rval
355
356 clean:
357         -$(LIBTOOL) --mode=clean rm -f $(PROGS) $(TEST_PROGS) *.lo *.o *.la *.a stamp-* core *.core core.* *.out *.toke *.err
358
359 mostlyclean: clean
360
361 distclean: clean
362         -rm -rf Makefile sudoers sudoers.lo .libs $(LINKS)
363         @if [ -n "$(DEVEL)" -a "$(devdir)" != "$(srcdir)" ]; then \
364             cmd='rm -rf $(GENERATED)'; \
365             echo "$$cmd"; eval $$cmd; \
366         fi
367
368 clobber: distclean
369
370 realclean: distclean
371         rm -f TAGS tags
372
373 cleandir: realclean
374
375 # Autogenerated dependencies, do not modify
376 afs.lo: $(authdir)/afs.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
377         $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
378         $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
379         $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
380         $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
381         $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h
382         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/afs.c
383 aix_auth.lo: $(authdir)/aix_auth.c $(top_builddir)/config.h \
384              $(srcdir)/sudoers.h $(top_srcdir)/compat/stdbool.h \
385              $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
386              $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
387              $(srcdir)/defaults.h $(devdir)/def_data.h $(srcdir)/logging.h \
388              $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h \
389              $(incdir)/sudo_debug.h $(incdir)/gettext.h
390         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/aix_auth.c
391 alias.lo: $(srcdir)/alias.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
392           $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
393           $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
394           $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
395           $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
396           $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h \
397           $(srcdir)/parse.h $(srcdir)/redblack.h $(devdir)/gram.h
398         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/alias.c
399 audit.lo: $(srcdir)/audit.c $(top_builddir)/config.h $(incdir)/missing.h \
400           $(srcdir)/logging.h $(incdir)/sudo_debug.h $(srcdir)/bsm_audit.h \
401           $(srcdir)/linux_audit.h
402         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/audit.c
403 boottime.lo: $(srcdir)/boottime.c $(top_builddir)/config.h $(incdir)/missing.h \
404              $(incdir)/sudo_debug.h
405         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/boottime.c
406 bsdauth.lo: $(authdir)/bsdauth.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
407             $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
408             $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
409             $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
410             $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
411             $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h
412         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/bsdauth.c
413 bsm_audit.lo: $(srcdir)/bsm_audit.c $(top_builddir)/config.h \
414               $(incdir)/gettext.h $(incdir)/error.h $(incdir)/sudo_debug.h \
415               $(srcdir)/bsm_audit.h
416         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/bsm_audit.c
417 check.lo: $(srcdir)/check.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
418           $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
419           $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
420           $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
421           $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
422           $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h
423         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/check.c
424 check_addr.o: $(srcdir)/regress/parser/check_addr.c $(top_builddir)/config.h \
425               $(srcdir)/sudoers.h $(top_srcdir)/compat/stdbool.h \
426               $(top_builddir)/pathnames.h $(incdir)/missing.h \
427               $(incdir)/error.h $(incdir)/alloc.h $(incdir)/list.h \
428               $(incdir)/fileops.h $(srcdir)/defaults.h $(devdir)/def_data.h \
429               $(srcdir)/logging.h $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h \
430               $(incdir)/sudo_debug.h $(incdir)/gettext.h $(srcdir)/parse.h \
431               $(srcdir)/interfaces.h
432         $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/regress/parser/check_addr.c
433 check_fill.o: $(srcdir)/regress/parser/check_fill.c $(top_builddir)/config.h \
434               $(top_srcdir)/compat/stdbool.h $(incdir)/list.h \
435               $(srcdir)/parse.h $(srcdir)/toke.h $(incdir)/sudo_plugin.h \
436               $(devdir)/gram.h
437         $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/regress/parser/check_fill.c
438 check_iolog_path.o: $(srcdir)/regress/iolog_path/check_iolog_path.c \
439                     $(top_builddir)/config.h $(srcdir)/sudoers.h \
440                     $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
441                     $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
442                     $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
443                     $(devdir)/def_data.h $(srcdir)/logging.h \
444                     $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h \
445                     $(incdir)/sudo_debug.h $(incdir)/gettext.h \
446                     $(devdir)/def_data.c
447         $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/regress/iolog_path/check_iolog_path.c
448 check_wrap.o: $(srcdir)/regress/logging/check_wrap.c $(top_builddir)/config.h \
449               $(incdir)/missing.h $(incdir)/error.h $(incdir)/sudo_plugin.h
450         $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/regress/logging/check_wrap.c
451 dce.lo: $(authdir)/dce.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
452         $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
453         $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
454         $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
455         $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
456         $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h
457         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/dce.c
458 defaults.lo: $(srcdir)/defaults.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
459              $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
460              $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
461              $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
462              $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
463              $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h \
464              $(incdir)/gettext.h $(srcdir)/parse.h $(devdir)/gram.h \
465              $(devdir)/def_data.c
466         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/defaults.c
467 env.lo: $(srcdir)/env.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
468         $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
469         $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
470         $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
471         $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
472         $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h
473         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/env.c
474 error.o: $(top_srcdir)/src/error.c $(top_builddir)/config.h \
475          $(incdir)/missing.h $(incdir)/error.h $(incdir)/gettext.h
476         $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(top_srcdir)/src/error.c
477 find_path.lo: $(srcdir)/find_path.c $(top_builddir)/config.h \
478               $(srcdir)/sudoers.h $(top_srcdir)/compat/stdbool.h \
479               $(top_builddir)/pathnames.h $(incdir)/missing.h \
480               $(incdir)/error.h $(incdir)/alloc.h $(incdir)/list.h \
481               $(incdir)/fileops.h $(srcdir)/defaults.h $(devdir)/def_data.h \
482               $(srcdir)/logging.h $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h \
483               $(incdir)/sudo_debug.h $(incdir)/gettext.h
484         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/find_path.c
485 find_path.o: find_path.lo
486 fwtk.lo: $(authdir)/fwtk.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
487          $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
488          $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
489          $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
490          $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
491          $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h
492         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/fwtk.c
493 getdate.o: $(devdir)/getdate.c $(top_builddir)/config.h \
494            $(top_builddir)/config.h $(incdir)/missing.h
495         $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(devdir)/getdate.c
496 getspwuid.lo: $(srcdir)/getspwuid.c $(top_builddir)/config.h \
497               $(srcdir)/sudoers.h $(top_srcdir)/compat/stdbool.h \
498               $(top_builddir)/pathnames.h $(incdir)/missing.h \
499               $(incdir)/error.h $(incdir)/alloc.h $(incdir)/list.h \
500               $(incdir)/fileops.h $(srcdir)/defaults.h $(devdir)/def_data.h \
501               $(srcdir)/logging.h $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h \
502               $(incdir)/sudo_debug.h $(incdir)/gettext.h
503         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/getspwuid.c
504 goodpath.lo: $(srcdir)/goodpath.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
505              $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
506              $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
507              $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
508              $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
509              $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h
510         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/goodpath.c
511 goodpath.o: goodpath.lo
512 gram.lo: $(devdir)/gram.c $(top_builddir)/config.h $(top_builddir)/config.h \
513          $(srcdir)/sudoers.h $(top_srcdir)/compat/stdbool.h \
514          $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
515          $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
516          $(srcdir)/defaults.h $(devdir)/def_data.h $(srcdir)/logging.h \
517          $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h \
518          $(incdir)/gettext.h $(srcdir)/parse.h $(srcdir)/toke.h $(devdir)/gram.h
519         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(devdir)/gram.c
520 group_plugin.lo: $(srcdir)/group_plugin.c $(top_builddir)/config.h \
521                  $(top_srcdir)/compat/dlfcn.h $(srcdir)/sudoers.h \
522                  $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
523                  $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
524                  $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
525                  $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
526                  $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h \
527                  $(incdir)/gettext.h
528         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/group_plugin.c
529 group_plugin.o: group_plugin.lo
530 interfaces.lo: $(srcdir)/interfaces.c $(top_builddir)/config.h \
531                $(srcdir)/sudoers.h $(top_srcdir)/compat/stdbool.h \
532                $(top_builddir)/pathnames.h $(incdir)/missing.h \
533                $(incdir)/error.h $(incdir)/alloc.h $(incdir)/list.h \
534                $(incdir)/fileops.h $(srcdir)/defaults.h $(devdir)/def_data.h \
535                $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
536                $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h \
537                $(incdir)/gettext.h $(srcdir)/interfaces.h
538         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/interfaces.c
539 interfaces.o: interfaces.lo
540 iolog.lo: $(srcdir)/iolog.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
541           $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
542           $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
543           $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
544           $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
545           $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h
546         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/iolog.c
547 iolog_path.lo: $(srcdir)/iolog_path.c $(top_builddir)/config.h \
548                $(srcdir)/sudoers.h $(top_srcdir)/compat/stdbool.h \
549                $(top_builddir)/pathnames.h $(incdir)/missing.h \
550                $(incdir)/error.h $(incdir)/alloc.h $(incdir)/list.h \
551                $(incdir)/fileops.h $(srcdir)/defaults.h $(devdir)/def_data.h \
552                $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
553                $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h \
554                $(incdir)/gettext.h
555         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/iolog_path.c
556 iolog_path.o: iolog_path.lo
557 kerb5.lo: $(authdir)/kerb5.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
558           $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
559           $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
560           $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
561           $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
562           $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h
563         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/kerb5.c
564 ldap.lo: $(srcdir)/ldap.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
565          $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
566          $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
567          $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
568          $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
569          $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h \
570          $(srcdir)/parse.h $(incdir)/lbuf.h
571         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/ldap.c
572 linux_audit.lo: $(srcdir)/linux_audit.c $(top_builddir)/config.h \
573                 $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
574                 $(incdir)/gettext.h $(incdir)/sudo_debug.h \
575                 $(srcdir)/linux_audit.h
576         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/linux_audit.c
577 logging.lo: $(srcdir)/logging.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
578             $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
579             $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
580             $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
581             $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
582             $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h
583         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/logging.c
584 logwrap.lo: $(srcdir)/logwrap.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
585             $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
586             $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
587             $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
588             $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
589             $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h
590         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/logwrap.c
591 logwrap.o: logwrap.lo
592 match.lo: $(srcdir)/match.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
593           $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
594           $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
595           $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
596           $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
597           $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h \
598           $(srcdir)/parse.h $(devdir)/gram.h $(top_srcdir)/compat/fnmatch.h \
599           $(top_srcdir)/compat/glob.h
600         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/match.c
601 match_addr.lo: $(srcdir)/match_addr.c $(top_builddir)/config.h \
602                $(srcdir)/sudoers.h $(top_srcdir)/compat/stdbool.h \
603                $(top_builddir)/pathnames.h $(incdir)/missing.h \
604                $(incdir)/error.h $(incdir)/alloc.h $(incdir)/list.h \
605                $(incdir)/fileops.h $(srcdir)/defaults.h $(devdir)/def_data.h \
606                $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
607                $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h \
608                $(incdir)/gettext.h $(srcdir)/interfaces.h
609         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/match_addr.c
610 match_addr.o: match_addr.lo
611 net_ifs.o: $(top_srcdir)/src/net_ifs.c $(top_builddir)/config.h \
612            $(incdir)/missing.h $(incdir)/alloc.h $(incdir)/error.h \
613            $(incdir)/sudo_debug.h $(incdir)/gettext.h
614         $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(top_srcdir)/src/net_ifs.c
615 pam.lo: $(authdir)/pam.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
616         $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
617         $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
618         $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
619         $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
620         $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h
621         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/pam.c
622 parse.lo: $(srcdir)/parse.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
623           $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
624           $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
625           $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
626           $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
627           $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h \
628           $(srcdir)/parse.h $(incdir)/lbuf.h $(devdir)/gram.h
629         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/parse.c
630 passwd.lo: $(authdir)/passwd.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
631            $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
632            $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
633            $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
634            $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
635            $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h
636         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/passwd.c
637 plugin_error.lo: $(srcdir)/plugin_error.c $(top_builddir)/config.h \
638                  $(incdir)/missing.h $(incdir)/alloc.h $(incdir)/error.h \
639                  $(incdir)/sudo_plugin.h $(incdir)/gettext.h
640         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/plugin_error.c
641 pwutil.lo: $(srcdir)/pwutil.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
642            $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
643            $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
644            $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
645            $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
646            $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h \
647            $(srcdir)/redblack.h
648         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/pwutil.c
649 pwutil.o: pwutil.lo
650 redblack.lo: $(srcdir)/redblack.c $(top_builddir)/config.h $(incdir)/missing.h \
651              $(incdir)/alloc.h $(incdir)/sudo_debug.h $(srcdir)/redblack.h
652         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/redblack.c
653 redblack.o: redblack.lo
654 rfc1938.lo: $(authdir)/rfc1938.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
655             $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
656             $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
657             $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
658             $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
659             $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h
660         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/rfc1938.c
661 secureware.lo: $(authdir)/secureware.c $(top_builddir)/config.h \
662                $(srcdir)/sudoers.h $(top_srcdir)/compat/stdbool.h \
663                $(top_builddir)/pathnames.h $(incdir)/missing.h \
664                $(incdir)/error.h $(incdir)/alloc.h $(incdir)/list.h \
665                $(incdir)/fileops.h $(srcdir)/defaults.h $(devdir)/def_data.h \
666                $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
667                $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h \
668                $(incdir)/gettext.h
669         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/secureware.c
670 securid5.lo: $(authdir)/securid5.c $(top_builddir)/config.h \
671              $(srcdir)/sudoers.h $(top_srcdir)/compat/stdbool.h \
672              $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
673              $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
674              $(srcdir)/defaults.h $(devdir)/def_data.h $(srcdir)/logging.h \
675              $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h \
676              $(incdir)/sudo_debug.h $(incdir)/gettext.h
677         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/securid5.c
678 set_perms.lo: $(srcdir)/set_perms.c $(top_builddir)/config.h \
679               $(srcdir)/sudoers.h $(top_srcdir)/compat/stdbool.h \
680               $(top_builddir)/pathnames.h $(incdir)/missing.h \
681               $(incdir)/error.h $(incdir)/alloc.h $(incdir)/list.h \
682               $(incdir)/fileops.h $(srcdir)/defaults.h $(devdir)/def_data.h \
683               $(srcdir)/logging.h $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h \
684               $(incdir)/sudo_debug.h $(incdir)/gettext.h
685         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/set_perms.c
686 sia.lo: $(authdir)/sia.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
687         $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
688         $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
689         $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
690         $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
691         $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h
692         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/sia.c
693 sudo_auth.lo: $(authdir)/sudo_auth.c $(top_builddir)/config.h \
694               $(srcdir)/sudoers.h $(top_srcdir)/compat/stdbool.h \
695               $(top_builddir)/pathnames.h $(incdir)/missing.h \
696               $(incdir)/error.h $(incdir)/alloc.h $(incdir)/list.h \
697               $(incdir)/fileops.h $(srcdir)/defaults.h $(devdir)/def_data.h \
698               $(srcdir)/logging.h $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h \
699               $(incdir)/sudo_debug.h $(incdir)/gettext.h $(srcdir)/insults.h \
700               $(srcdir)/ins_2001.h $(srcdir)/ins_goons.h \
701               $(srcdir)/ins_classic.h $(srcdir)/ins_csops.h
702         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/sudo_auth.c
703 sudo_nss.lo: $(srcdir)/sudo_nss.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
704              $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
705              $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
706              $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
707              $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
708              $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h \
709              $(incdir)/gettext.h $(incdir)/lbuf.h
710         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/sudo_nss.c
711 sudoers.lo: $(srcdir)/sudoers.c $(top_builddir)/config.h \
712             $(top_srcdir)/compat/getaddrinfo.h $(top_builddir)/config.h \
713             $(srcdir)/sudoers.h $(top_srcdir)/compat/stdbool.h \
714             $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
715             $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
716             $(srcdir)/defaults.h $(devdir)/def_data.h $(srcdir)/logging.h \
717             $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h \
718             $(incdir)/sudo_debug.h $(incdir)/gettext.h $(srcdir)/interfaces.h \
719             $(srcdir)/sudoers_version.h $(srcdir)/auth/sudo_auth.h \
720             $(incdir)/secure_path.h
721         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/sudoers.c
722 sudoreplay.o: $(srcdir)/sudoreplay.c $(top_builddir)/config.h \
723               $(top_srcdir)/compat/timespec.h $(top_srcdir)/compat/stdbool.h \
724               $(top_builddir)/pathnames.h $(incdir)/missing.h \
725               $(incdir)/alloc.h $(incdir)/error.h $(incdir)/gettext.h \
726               $(incdir)/sudo_plugin.h $(incdir)/sudo_conf.h $(incdir)/list.h \
727               $(incdir)/sudo_debug.h
728         $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/sudoreplay.c
729 testsudoers.o: $(srcdir)/testsudoers.c $(top_builddir)/config.h \
730                $(top_srcdir)/compat/fnmatch.h $(srcdir)/tsgetgrpw.h \
731                $(top_builddir)/config.h $(srcdir)/sudoers.h \
732                $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
733                $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
734                $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
735                $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
736                $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h \
737                $(incdir)/gettext.h $(srcdir)/interfaces.h $(srcdir)/parse.h \
738                $(incdir)/sudo_conf.h $(incdir)/list.h $(devdir)/gram.h
739         $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/testsudoers.c
740 timestr.lo: $(srcdir)/timestr.c $(top_builddir)/config.h $(incdir)/missing.h
741         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/timestr.c
742 toke.lo: $(devdir)/toke.c $(top_builddir)/config.h $(top_builddir)/config.h \
743          $(srcdir)/sudoers.h $(top_srcdir)/compat/stdbool.h \
744          $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
745          $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
746          $(srcdir)/defaults.h $(devdir)/def_data.h $(srcdir)/logging.h \
747          $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h \
748          $(incdir)/gettext.h $(srcdir)/parse.h $(srcdir)/toke.h \
749          $(devdir)/gram.h $(incdir)/lbuf.h $(incdir)/secure_path.h
750         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(devdir)/toke.c
751 toke_util.lo: $(srcdir)/toke_util.c $(top_builddir)/config.h \
752               $(srcdir)/sudoers.h $(top_srcdir)/compat/stdbool.h \
753               $(top_builddir)/pathnames.h $(incdir)/missing.h \
754               $(incdir)/error.h $(incdir)/alloc.h $(incdir)/list.h \
755               $(incdir)/fileops.h $(srcdir)/defaults.h $(devdir)/def_data.h \
756               $(srcdir)/logging.h $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h \
757               $(incdir)/sudo_debug.h $(incdir)/gettext.h $(srcdir)/parse.h \
758               $(srcdir)/toke.h $(devdir)/gram.h
759         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/toke_util.c
760 toke_util.o: toke_util.lo
761 tsgetgrpw.o: $(srcdir)/tsgetgrpw.c $(top_builddir)/config.h \
762              $(srcdir)/tsgetgrpw.h $(top_builddir)/config.h \
763              $(srcdir)/sudoers.h $(top_srcdir)/compat/stdbool.h \
764              $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
765              $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
766              $(srcdir)/defaults.h $(devdir)/def_data.h $(srcdir)/logging.h \
767              $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h \
768              $(incdir)/sudo_debug.h $(incdir)/gettext.h
769         $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/tsgetgrpw.c
770 visudo.o: $(srcdir)/visudo.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
771           $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
772           $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
773           $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
774           $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
775           $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h \
776           $(srcdir)/interfaces.h $(srcdir)/parse.h $(srcdir)/redblack.h \
777           $(incdir)/gettext.h $(srcdir)/sudoers_version.h \
778           $(incdir)/sudo_conf.h $(incdir)/list.h $(devdir)/gram.h
779         $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/visudo.c