Imported Upstream version 1.8.4p4
[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)/sudo_debug.h $(srcdir)/bsm_audit.h
415         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/bsm_audit.c
416 check.lo: $(srcdir)/check.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
417           $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
418           $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
419           $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
420           $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
421           $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h
422         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/check.c
423 check_addr.o: $(srcdir)/regress/parser/check_addr.c $(top_builddir)/config.h \
424               $(srcdir)/sudoers.h $(top_srcdir)/compat/stdbool.h \
425               $(top_builddir)/pathnames.h $(incdir)/missing.h \
426               $(incdir)/error.h $(incdir)/alloc.h $(incdir)/list.h \
427               $(incdir)/fileops.h $(srcdir)/defaults.h $(devdir)/def_data.h \
428               $(srcdir)/logging.h $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h \
429               $(incdir)/sudo_debug.h $(incdir)/gettext.h $(srcdir)/parse.h \
430               $(srcdir)/interfaces.h
431         $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/regress/parser/check_addr.c
432 check_fill.o: $(srcdir)/regress/parser/check_fill.c $(top_builddir)/config.h \
433               $(top_srcdir)/compat/stdbool.h $(incdir)/list.h \
434               $(srcdir)/parse.h $(srcdir)/toke.h $(incdir)/sudo_plugin.h \
435               $(devdir)/gram.h
436         $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/regress/parser/check_fill.c
437 check_iolog_path.o: $(srcdir)/regress/iolog_path/check_iolog_path.c \
438                     $(top_builddir)/config.h $(srcdir)/sudoers.h \
439                     $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
440                     $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
441                     $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
442                     $(devdir)/def_data.h $(srcdir)/logging.h \
443                     $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h \
444                     $(incdir)/sudo_debug.h $(incdir)/gettext.h \
445                     $(devdir)/def_data.c
446         $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/regress/iolog_path/check_iolog_path.c
447 check_wrap.o: $(srcdir)/regress/logging/check_wrap.c $(top_builddir)/config.h \
448               $(incdir)/missing.h $(incdir)/error.h $(incdir)/sudo_plugin.h
449         $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/regress/logging/check_wrap.c
450 dce.lo: $(authdir)/dce.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
451         $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
452         $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
453         $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
454         $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
455         $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h
456         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/dce.c
457 defaults.lo: $(srcdir)/defaults.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
458              $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
459              $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
460              $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
461              $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
462              $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h \
463              $(incdir)/gettext.h $(srcdir)/parse.h $(devdir)/gram.h \
464              $(devdir)/def_data.c
465         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/defaults.c
466 env.lo: $(srcdir)/env.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
467         $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
468         $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
469         $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
470         $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
471         $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h
472         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/env.c
473 error.o: $(top_srcdir)/src/error.c $(top_builddir)/config.h \
474          $(incdir)/missing.h $(incdir)/error.h $(incdir)/gettext.h
475         $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(top_srcdir)/src/error.c
476 find_path.lo: $(srcdir)/find_path.c $(top_builddir)/config.h \
477               $(srcdir)/sudoers.h $(top_srcdir)/compat/stdbool.h \
478               $(top_builddir)/pathnames.h $(incdir)/missing.h \
479               $(incdir)/error.h $(incdir)/alloc.h $(incdir)/list.h \
480               $(incdir)/fileops.h $(srcdir)/defaults.h $(devdir)/def_data.h \
481               $(srcdir)/logging.h $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h \
482               $(incdir)/sudo_debug.h $(incdir)/gettext.h
483         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/find_path.c
484 find_path.o: find_path.lo
485 fwtk.lo: $(authdir)/fwtk.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
486          $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
487          $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
488          $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
489          $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
490          $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h
491         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/fwtk.c
492 getdate.o: $(devdir)/getdate.c $(top_builddir)/config.h \
493            $(top_builddir)/config.h $(incdir)/missing.h
494         $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(devdir)/getdate.c
495 getspwuid.lo: $(srcdir)/getspwuid.c $(top_builddir)/config.h \
496               $(srcdir)/sudoers.h $(top_srcdir)/compat/stdbool.h \
497               $(top_builddir)/pathnames.h $(incdir)/missing.h \
498               $(incdir)/error.h $(incdir)/alloc.h $(incdir)/list.h \
499               $(incdir)/fileops.h $(srcdir)/defaults.h $(devdir)/def_data.h \
500               $(srcdir)/logging.h $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h \
501               $(incdir)/sudo_debug.h $(incdir)/gettext.h
502         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/getspwuid.c
503 goodpath.lo: $(srcdir)/goodpath.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
504              $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
505              $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
506              $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
507              $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
508              $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h
509         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/goodpath.c
510 goodpath.o: goodpath.lo
511 gram.lo: $(devdir)/gram.c $(top_builddir)/config.h $(top_builddir)/config.h \
512          $(srcdir)/sudoers.h $(top_srcdir)/compat/stdbool.h \
513          $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
514          $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
515          $(srcdir)/defaults.h $(devdir)/def_data.h $(srcdir)/logging.h \
516          $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h \
517          $(incdir)/gettext.h $(srcdir)/parse.h $(srcdir)/toke.h $(devdir)/gram.h
518         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(devdir)/gram.c
519 group_plugin.lo: $(srcdir)/group_plugin.c $(top_builddir)/config.h \
520                  $(top_srcdir)/compat/dlfcn.h $(srcdir)/sudoers.h \
521                  $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
522                  $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
523                  $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
524                  $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
525                  $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h \
526                  $(incdir)/gettext.h
527         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/group_plugin.c
528 group_plugin.o: group_plugin.lo
529 interfaces.lo: $(srcdir)/interfaces.c $(top_builddir)/config.h \
530                $(srcdir)/sudoers.h $(top_srcdir)/compat/stdbool.h \
531                $(top_builddir)/pathnames.h $(incdir)/missing.h \
532                $(incdir)/error.h $(incdir)/alloc.h $(incdir)/list.h \
533                $(incdir)/fileops.h $(srcdir)/defaults.h $(devdir)/def_data.h \
534                $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
535                $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h \
536                $(incdir)/gettext.h $(srcdir)/interfaces.h
537         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/interfaces.c
538 interfaces.o: interfaces.lo
539 iolog.lo: $(srcdir)/iolog.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
540           $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
541           $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
542           $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
543           $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
544           $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h
545         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/iolog.c
546 iolog_path.lo: $(srcdir)/iolog_path.c $(top_builddir)/config.h \
547                $(srcdir)/sudoers.h $(top_srcdir)/compat/stdbool.h \
548                $(top_builddir)/pathnames.h $(incdir)/missing.h \
549                $(incdir)/error.h $(incdir)/alloc.h $(incdir)/list.h \
550                $(incdir)/fileops.h $(srcdir)/defaults.h $(devdir)/def_data.h \
551                $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
552                $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h \
553                $(incdir)/gettext.h
554         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/iolog_path.c
555 iolog_path.o: iolog_path.lo
556 kerb5.lo: $(authdir)/kerb5.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
557           $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
558           $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
559           $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
560           $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
561           $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h
562         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/kerb5.c
563 ldap.lo: $(srcdir)/ldap.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
564          $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
565          $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
566          $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
567          $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
568          $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h \
569          $(srcdir)/parse.h $(incdir)/lbuf.h
570         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/ldap.c
571 linux_audit.lo: $(srcdir)/linux_audit.c $(top_builddir)/config.h \
572                 $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
573                 $(incdir)/gettext.h $(incdir)/sudo_debug.h \
574                 $(srcdir)/linux_audit.h
575         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/linux_audit.c
576 logging.lo: $(srcdir)/logging.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
577             $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
578             $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
579             $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
580             $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
581             $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h
582         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/logging.c
583 logwrap.lo: $(srcdir)/logwrap.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
584             $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
585             $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
586             $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
587             $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
588             $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h
589         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/logwrap.c
590 logwrap.o: logwrap.lo
591 match.lo: $(srcdir)/match.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
592           $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
593           $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
594           $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
595           $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
596           $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h \
597           $(srcdir)/parse.h $(devdir)/gram.h $(top_srcdir)/compat/fnmatch.h \
598           $(top_srcdir)/compat/glob.h
599         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/match.c
600 match_addr.lo: $(srcdir)/match_addr.c $(top_builddir)/config.h \
601                $(srcdir)/sudoers.h $(top_srcdir)/compat/stdbool.h \
602                $(top_builddir)/pathnames.h $(incdir)/missing.h \
603                $(incdir)/error.h $(incdir)/alloc.h $(incdir)/list.h \
604                $(incdir)/fileops.h $(srcdir)/defaults.h $(devdir)/def_data.h \
605                $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
606                $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h \
607                $(incdir)/gettext.h $(srcdir)/interfaces.h
608         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/match_addr.c
609 match_addr.o: match_addr.lo
610 net_ifs.o: $(top_srcdir)/src/net_ifs.c $(top_builddir)/config.h \
611            $(incdir)/missing.h $(incdir)/alloc.h $(incdir)/error.h \
612            $(incdir)/sudo_debug.h $(incdir)/gettext.h
613         $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(top_srcdir)/src/net_ifs.c
614 pam.lo: $(authdir)/pam.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
615         $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
616         $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
617         $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
618         $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
619         $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h
620         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/pam.c
621 parse.lo: $(srcdir)/parse.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
622           $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
623           $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
624           $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
625           $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
626           $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h \
627           $(srcdir)/parse.h $(incdir)/lbuf.h $(devdir)/gram.h
628         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/parse.c
629 passwd.lo: $(authdir)/passwd.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
630            $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
631            $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
632            $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
633            $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
634            $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h
635         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/passwd.c
636 plugin_error.lo: $(srcdir)/plugin_error.c $(top_builddir)/config.h \
637                  $(incdir)/missing.h $(incdir)/alloc.h $(incdir)/error.h \
638                  $(incdir)/sudo_plugin.h $(incdir)/gettext.h
639         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/plugin_error.c
640 pwutil.lo: $(srcdir)/pwutil.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
641            $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
642            $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
643            $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
644            $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
645            $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h \
646            $(srcdir)/redblack.h
647         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/pwutil.c
648 pwutil.o: pwutil.lo
649 redblack.lo: $(srcdir)/redblack.c $(top_builddir)/config.h $(incdir)/missing.h \
650              $(incdir)/alloc.h $(incdir)/sudo_debug.h $(srcdir)/redblack.h
651         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/redblack.c
652 redblack.o: redblack.lo
653 rfc1938.lo: $(authdir)/rfc1938.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
654             $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
655             $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
656             $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
657             $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
658             $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h
659         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/rfc1938.c
660 secureware.lo: $(authdir)/secureware.c $(top_builddir)/config.h \
661                $(srcdir)/sudoers.h $(top_srcdir)/compat/stdbool.h \
662                $(top_builddir)/pathnames.h $(incdir)/missing.h \
663                $(incdir)/error.h $(incdir)/alloc.h $(incdir)/list.h \
664                $(incdir)/fileops.h $(srcdir)/defaults.h $(devdir)/def_data.h \
665                $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
666                $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h \
667                $(incdir)/gettext.h
668         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/secureware.c
669 securid5.lo: $(authdir)/securid5.c $(top_builddir)/config.h \
670              $(srcdir)/sudoers.h $(top_srcdir)/compat/stdbool.h \
671              $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
672              $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
673              $(srcdir)/defaults.h $(devdir)/def_data.h $(srcdir)/logging.h \
674              $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h \
675              $(incdir)/sudo_debug.h $(incdir)/gettext.h
676         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/securid5.c
677 set_perms.lo: $(srcdir)/set_perms.c $(top_builddir)/config.h \
678               $(srcdir)/sudoers.h $(top_srcdir)/compat/stdbool.h \
679               $(top_builddir)/pathnames.h $(incdir)/missing.h \
680               $(incdir)/error.h $(incdir)/alloc.h $(incdir)/list.h \
681               $(incdir)/fileops.h $(srcdir)/defaults.h $(devdir)/def_data.h \
682               $(srcdir)/logging.h $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h \
683               $(incdir)/sudo_debug.h $(incdir)/gettext.h
684         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/set_perms.c
685 sia.lo: $(authdir)/sia.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
686         $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
687         $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
688         $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
689         $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
690         $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h
691         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/sia.c
692 sudo_auth.lo: $(authdir)/sudo_auth.c $(top_builddir)/config.h \
693               $(srcdir)/sudoers.h $(top_srcdir)/compat/stdbool.h \
694               $(top_builddir)/pathnames.h $(incdir)/missing.h \
695               $(incdir)/error.h $(incdir)/alloc.h $(incdir)/list.h \
696               $(incdir)/fileops.h $(srcdir)/defaults.h $(devdir)/def_data.h \
697               $(srcdir)/logging.h $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h \
698               $(incdir)/sudo_debug.h $(incdir)/gettext.h $(srcdir)/insults.h \
699               $(srcdir)/ins_2001.h $(srcdir)/ins_goons.h \
700               $(srcdir)/ins_classic.h $(srcdir)/ins_csops.h
701         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/sudo_auth.c
702 sudo_nss.lo: $(srcdir)/sudo_nss.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
703              $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
704              $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
705              $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
706              $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
707              $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h \
708              $(incdir)/gettext.h $(incdir)/lbuf.h
709         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/sudo_nss.c
710 sudoers.lo: $(srcdir)/sudoers.c $(top_builddir)/config.h \
711             $(top_srcdir)/compat/getaddrinfo.h $(top_builddir)/config.h \
712             $(srcdir)/sudoers.h $(top_srcdir)/compat/stdbool.h \
713             $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
714             $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
715             $(srcdir)/defaults.h $(devdir)/def_data.h $(srcdir)/logging.h \
716             $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h \
717             $(incdir)/sudo_debug.h $(incdir)/gettext.h $(srcdir)/interfaces.h \
718             $(srcdir)/sudoers_version.h $(srcdir)/auth/sudo_auth.h
719         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/sudoers.c
720 sudoreplay.o: $(srcdir)/sudoreplay.c $(top_builddir)/config.h \
721               $(top_srcdir)/compat/timespec.h $(top_srcdir)/compat/stdbool.h \
722               $(top_builddir)/pathnames.h $(incdir)/missing.h \
723               $(incdir)/alloc.h $(incdir)/error.h $(incdir)/gettext.h \
724               $(incdir)/sudo_plugin.h $(incdir)/sudo_conf.h $(incdir)/list.h \
725               $(incdir)/sudo_debug.h
726         $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/sudoreplay.c
727 testsudoers.o: $(srcdir)/testsudoers.c $(top_builddir)/config.h \
728                $(top_srcdir)/compat/fnmatch.h $(srcdir)/tsgetgrpw.h \
729                $(top_builddir)/config.h $(srcdir)/sudoers.h \
730                $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
731                $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
732                $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
733                $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
734                $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h \
735                $(incdir)/gettext.h $(srcdir)/interfaces.h $(srcdir)/parse.h \
736                $(incdir)/sudo_conf.h $(incdir)/list.h $(devdir)/gram.h
737         $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/testsudoers.c
738 timestr.lo: $(srcdir)/timestr.c $(top_builddir)/config.h $(incdir)/missing.h
739         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/timestr.c
740 toke.lo: $(devdir)/toke.c $(top_builddir)/config.h $(top_builddir)/config.h \
741          $(srcdir)/sudoers.h $(top_srcdir)/compat/stdbool.h \
742          $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
743          $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
744          $(srcdir)/defaults.h $(devdir)/def_data.h $(srcdir)/logging.h \
745          $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h \
746          $(incdir)/gettext.h $(srcdir)/parse.h $(srcdir)/toke.h \
747          $(devdir)/gram.h $(incdir)/lbuf.h
748         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(devdir)/toke.c
749 toke_util.lo: $(srcdir)/toke_util.c $(top_builddir)/config.h \
750               $(srcdir)/sudoers.h $(top_srcdir)/compat/stdbool.h \
751               $(top_builddir)/pathnames.h $(incdir)/missing.h \
752               $(incdir)/error.h $(incdir)/alloc.h $(incdir)/list.h \
753               $(incdir)/fileops.h $(srcdir)/defaults.h $(devdir)/def_data.h \
754               $(srcdir)/logging.h $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h \
755               $(incdir)/sudo_debug.h $(incdir)/gettext.h $(srcdir)/parse.h \
756               $(srcdir)/toke.h $(devdir)/gram.h
757         $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/toke_util.c
758 toke_util.o: toke_util.lo
759 tsgetgrpw.o: $(srcdir)/tsgetgrpw.c $(top_builddir)/config.h \
760              $(srcdir)/tsgetgrpw.h $(top_builddir)/config.h \
761              $(srcdir)/sudoers.h $(top_srcdir)/compat/stdbool.h \
762              $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
763              $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
764              $(srcdir)/defaults.h $(devdir)/def_data.h $(srcdir)/logging.h \
765              $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h \
766              $(incdir)/sudo_debug.h $(incdir)/gettext.h
767         $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/tsgetgrpw.c
768 visudo.o: $(srcdir)/visudo.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
769           $(top_srcdir)/compat/stdbool.h $(top_builddir)/pathnames.h \
770           $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
771           $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
772           $(devdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
773           $(incdir)/sudo_plugin.h $(incdir)/sudo_debug.h $(incdir)/gettext.h \
774           $(srcdir)/interfaces.h $(srcdir)/parse.h $(srcdir)/redblack.h \
775           $(incdir)/gettext.h $(srcdir)/sudoers_version.h \
776           $(incdir)/sudo_conf.h $(incdir)/list.h $(devdir)/gram.h
777         $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/visudo.c