Annotation of embedaddon/sudo/plugins/sudoers/Makefile.in, revision 1.1

1.1     ! misho       1: #
        !             2: # Copyright (c) 1996, 1998-2005, 2007-2011
        !             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: 
        !            42: # Our install program supports extra flags...
        !            43: INSTALL = $(SHELL) $(top_srcdir)/install-sh -c
        !            44: 
        !            45: # Libraries
        !            46: LT_LIBS = $(top_builddir)/common/libcommon.la $(LIBOBJDIR)libreplace.la
        !            47: LIBS = $(LT_LIBS) @LIBINTL@
        !            48: NET_LIBS = @NET_LIBS@
        !            49: SUDOERS_LIBS = @SUDOERS_LIBS@ @AFS_LIBS@ @GETGROUPS_LIB@ $(LIBS) $(NET_LIBS) @ZLIB@
        !            50: REPLAY_LIBS = @REPLAY_LIBS@ @ZLIB@
        !            51: 
        !            52: # C preprocessor flags
        !            53: CPPFLAGS = -I$(incdir) -I$(top_builddir) -I$(srcdir) -I$(top_srcdir) @CPPFLAGS@
        !            54: 
        !            55: # Usually -O and/or -g
        !            56: CFLAGS = @CFLAGS@
        !            57: 
        !            58: # Flags to pass to the link stage
        !            59: LDFLAGS = @LDFLAGS@
        !            60: SUDOERS_LDFLAGS = $(LDFLAGS) @SUDOERS_LDFLAGS@
        !            61: LTLDFLAGS = @LTLDFLAGS@
        !            62: 
        !            63: # Where to install things...
        !            64: prefix = @prefix@
        !            65: exec_prefix = @exec_prefix@
        !            66: bindir = @bindir@
        !            67: sbindir = @sbindir@
        !            68: sysconfdir = @sysconfdir@
        !            69: libexecdir = @libexecdir@
        !            70: datarootdir = @datarootdir@
        !            71: localedir = @localedir@
        !            72: localstatedir = @localstatedir@
        !            73: 
        !            74: # File extension for shared objects
        !            75: soext = @SOEXT@
        !            76: 
        !            77: # Directory in which to install the sudoers plugin
        !            78: plugindir = @PLUGINDIR@
        !            79: 
        !            80: # Directory in which to install the sudoers file
        !            81: sudoersdir = $(sysconfdir)
        !            82: 
        !            83: # Directory in which to install sudoreplay.
        !            84: replaydir = $(bindir)
        !            85: 
        !            86: # Directory in which to install visudo
        !            87: visudodir = $(sbindir)
        !            88: 
        !            89: # User and group ids the installed files should be "owned" by
        !            90: install_uid = 0
        !            91: install_gid = 0
        !            92: 
        !            93: # User, group, and mode the sudoers file should be "owned" by (configure)
        !            94: sudoers_uid = @SUDOERS_UID@
        !            95: sudoers_gid = @SUDOERS_GID@
        !            96: sudoers_mode = @SUDOERS_MODE@
        !            97: 
        !            98: # Pass in paths and uid/gid + OS dependent defines
        !            99: DEFS = @OSDEFS@ -D_PATH_SUDOERS=\"$(sudoersdir)/sudoers\" \
        !           100:        -DSUDOERS_UID=$(sudoers_uid) -DSUDOERS_GID=$(sudoers_gid) \
        !           101:        -DSUDOERS_MODE=$(sudoers_mode) -DLOCALEDIR=\"$(localedir)\"
        !           102: 
        !           103: #### End of system configuration section. ####
        !           104: 
        !           105: SHELL = @SHELL@
        !           106: 
        !           107: PROGS = sudoers.la visudo sudoreplay testsudoers
        !           108: 
        !           109: TEST_PROGS = check_iolog_path check_fill check_wrap check_addr
        !           110: 
        !           111: AUTH_OBJS = sudo_auth.lo @AUTH_OBJS@
        !           112: 
        !           113: LIBPARSESUDOERS_OBJS = alias.lo audit.lo defaults.lo gram.lo match.lo \
        !           114:                       match_addr.lo pwutil.lo timestr.lo toke.lo \
        !           115:                       toke_util.lo redblack.lo
        !           116: 
        !           117: SUDOERS_OBJS = $(AUTH_OBJS) boottime.lo check.lo env.lo goodpath.lo \
        !           118:               group_plugin.lo find_path.lo interfaces.lo logging.lo \
        !           119:               logwrap.lo parse.lo set_perms.lo sudoers.lo sudo_nss.lo \
        !           120:               iolog.lo iolog_path.lo @SUDOERS_OBJS@
        !           121: 
        !           122: VISUDO_OBJS = visudo.o goodpath.o find_path.o error.o
        !           123: 
        !           124: REPLAY_OBJS = getdate.o sudoreplay.o error.o
        !           125: 
        !           126: TEST_OBJS = interfaces.o testsudoers.o tsgetgrpw.o error.o group_plugin.o \
        !           127:            net_ifs.o
        !           128: 
        !           129: CHECK_ADDR_OBJS = check_addr.o match_addr.o interfaces.o error.o
        !           130: 
        !           131: CHECK_FILL_OBJS = check_fill.o toke_util.o error.o
        !           132: 
        !           133: CHECK_IOLOG_PATH_OBJS = check_iolog_path.o error.o iolog_path.o pwutil.o \
        !           134:                        redblack.o
        !           135: 
        !           136: CHECK_WRAP_OBJS = check_wrap.o logwrap.o error.o
        !           137: 
        !           138: LIBOBJDIR = $(top_builddir)/@ac_config_libobj_dir@/
        !           139: 
        !           140: VERSION = @PACKAGE_VERSION@
        !           141: PACKAGE_TARNAME = @PACKAGE_TARNAME@
        !           142: 
        !           143: all: $(PROGS)
        !           144: 
        !           145: .SUFFIXES: .o .c .h .l .y .lo
        !           146: 
        !           147: .c.o:
        !           148:        $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $<
        !           149: 
        !           150: .c.lo:
        !           151:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $<
        !           152: 
        !           153: # Prevent default rules from building .c files from .l and .y files
        !           154: .l.c:
        !           155: 
        !           156: .y.c:
        !           157: 
        !           158: Makefile: $(srcdir)/Makefile.in
        !           159:        (cd $(top_builddir) && ./config.status --file plugins/sudoers/Makefile)
        !           160: 
        !           161: libparsesudoers.la: $(LIBPARSESUDOERS_OBJS)
        !           162:        $(LIBTOOL) --mode=link $(CC) -o $@ $(LIBPARSESUDOERS_OBJS) -no-install
        !           163: 
        !           164: sudoers.la: $(SUDOERS_OBJS) $(LT_LIBS) libparsesudoers.la
        !           165:        $(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)
        !           166: 
        !           167: visudo: libparsesudoers.la $(VISUDO_OBJS) $(LT_LIBS)
        !           168:        $(LIBTOOL) --mode=link $(CC) -o $@ $(VISUDO_OBJS) $(LDFLAGS) libparsesudoers.la $(LIBS) $(NET_LIBS)
        !           169: 
        !           170: sudoreplay: timestr.lo $(REPLAY_OBJS) $(LT_LIBS)
        !           171:        $(LIBTOOL) --mode=link $(CC) -o $@ $(REPLAY_OBJS) $(LDFLAGS) timestr.lo $(REPLAY_LIBS) $(LIBS)
        !           172: 
        !           173: testsudoers: libparsesudoers.la $(TEST_OBJS) $(LT_LIBS)
        !           174:        $(LIBTOOL) --mode=link $(CC) -o $@ $(TEST_OBJS) $(LDFLAGS) libparsesudoers.la $(LIBS) $(NET_LIBS) @LIBDL@
        !           175: 
        !           176: check_addr: $(CHECK_ADDR_OBJS) $(LT_LIBS)
        !           177:        $(LIBTOOL) --mode=link $(CC) -o $@ $(CHECK_ADDR_OBJS) $(LDFLAGS) $(LIBS) $(NET_LIBS)
        !           178: 
        !           179: check_iolog_path: $(CHECK_IOLOG_PATH_OBJS) $(LT_LIBS)
        !           180:        $(LIBTOOL) --mode=link $(CC) -o $@ $(CHECK_IOLOG_PATH_OBJS) $(LDFLAGS) $(LIBS)
        !           181: 
        !           182: check_fill: $(CHECK_FILL_OBJS) $(LT_LIBS)
        !           183:        $(LIBTOOL) --mode=link $(CC) -o $@ $(CHECK_FILL_OBJS) $(LDFLAGS) $(LIBS)
        !           184: 
        !           185: check_wrap: $(CHECK_WRAP_OBJS) $(LT_LIBS)
        !           186:        $(LIBTOOL) --mode=link $(CC) -o $@ $(CHECK_WRAP_OBJS) $(LDFLAGS) $(LIBS)
        !           187: 
        !           188: # Uncomment the following if you want "make distclean" to clean the parser
        !           189: @DEV@GENERATED = gram.h gram.c toke.c def_data.c def_data.h getdate.c
        !           190: 
        !           191: # Uncomment the lines before -@true if you intend to modify gram.y
        !           192: $(devdir)/gram.c $(devdir)/gram.h: $(srcdir)/gram.y
        !           193: @DEV@  $(YACC) -d $(srcdir)/gram.y
        !           194: @DEV@  echo "#include <config.h>" > $(devdir)/gram.c
        !           195: @DEV@  cat y.tab.c >> $(devdir)/gram.c
        !           196: @DEV@  rm -f y.tab.c
        !           197: @DEV@  mv -f y.tab.h $(devdir)/gram.h
        !           198:        -@true
        !           199: 
        !           200: # Uncomment the lines before -@true if you intend to modify toke.l
        !           201: $(devdir)/toke.c: $(srcdir)/toke.l
        !           202: @DEV@  $(FLEX) $(srcdir)/toke.l
        !           203: @DEV@  echo "#include <config.h>" > $(devdir)/toke.c
        !           204: @DEV@  cat lex.yy.c >> $(devdir)/toke.c
        !           205: @DEV@  rm -f lex.yy.c
        !           206:        -@true
        !           207: 
        !           208: # Uncomment the lines before -@true if you intend to modify getdate.y
        !           209: $(devdir)/getdate.c: $(srcdir)/getdate.y
        !           210: @DEV@  echo "expect 10 shift/reduce conflicts"
        !           211: @DEV@  $(YACC) $(srcdir)/getdate.y
        !           212: @DEV@  echo "#include <config.h>" > $(devdir)/getdate.c
        !           213: @DEV@  cat y.tab.c >> $(devdir)/getdate.c
        !           214: @DEV@  rm -f y.tab.c
        !           215:        -@true
        !           216: 
        !           217: # Uncomment the following if you intend to modify def_data.in
        !           218: @DEV@$(devdir)/def_data.c $(devdir)/def_data.h: $(srcdir)/def_data.in
        !           219: @DEV@  perl $(srcdir)/mkdefaults -o $(devdir)/def_data $(srcdir)/def_data.in
        !           220: 
        !           221: sudoers: $(srcdir)/sudoers.in
        !           222:        (cd $(top_builddir) && $(SHELL) config.status --file=plugins/sudoers/$@)
        !           223: 
        !           224: pre-install:
        !           225:        @if test -r $(DESTDIR)$(sudoersdir)/sudoers; then \
        !           226:            echo "Checking existing sudoers file for syntax errors."; \
        !           227:            ./visudo -c -f $(DESTDIR)$(sudoersdir)/sudoers; \
        !           228:        fi
        !           229: 
        !           230: install: install-dirs install-plugin install-binaries install-sudoers install-doc
        !           231: 
        !           232: install-dirs:
        !           233:        $(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(plugindir) \
        !           234:            $(DESTDIR)$(visudodir) $(DESTDIR)$(replaydir) \
        !           235:            $(DESTDIR)$(sudoersdir) $(DESTDIR)$(docdir)
        !           236:        $(SHELL) $(top_srcdir)/mkinstalldirs -m 0700 $(DESTDIR)$(timedir)
        !           237: 
        !           238: install-binaries: visudo sudoreplay install-dirs
        !           239:        $(INSTALL) -b~ -O $(install_uid) -G $(install_gid) -M 0111 sudoreplay $(DESTDIR)$(replaydir)/sudoreplay
        !           240:        $(INSTALL) -b~ -O $(install_uid) -G $(install_gid) -M 0111 visudo $(DESTDIR)$(visudodir)/visudo
        !           241: 
        !           242: install-includes:
        !           243: 
        !           244: install-doc: install-dirs
        !           245:        @LDAP@$(INSTALL) -O $(install_uid) -G $(install_gid) -M 0555 $(srcdir)/sudoers2ldif $(DESTDIR)$(docdir)
        !           246: 
        !           247: install-plugin: sudoers.la install-dirs
        !           248:        $(INSTALL) -b~ -O $(install_uid) -G $(install_gid) -M 0755 .libs/sudoers$(soext) $(DESTDIR)$(plugindir)
        !           249: 
        !           250: install-sudoers: install-dirs
        !           251:        $(INSTALL) -d -O $(sudoers_uid) -G $(sudoers_gid) -M 0750 \
        !           252:            $(DESTDIR)$(sudoersdir)/sudoers.d
        !           253:        test -r $(DESTDIR)$(sudoersdir)/sudoers || \
        !           254:            $(INSTALL) -O $(sudoers_uid) -G $(sudoers_gid) -M $(sudoers_mode) \
        !           255:                sudoers $(DESTDIR)$(sudoersdir)/sudoers
        !           256: 
        !           257: uninstall:
        !           258:        -rm -f $(DESTDIR)$(plugindir)/sudoers$(soext)
        !           259:        -rm -f $(DESTDIR)$(replaydir)/sudoreplay
        !           260:        -rm -f $(DESTDIR)$(visudodir)/visudo
        !           261:        -cmp $(DESTDIR)$(sudoersdir)/sudoers $(srcdir)/sudoers >/dev/null && \
        !           262:            rm -f $(DESTDIR)$(sudoersdir)/sudoers
        !           263: 
        !           264: check: $(TEST_PROGS) visudo testsudoers
        !           265:        @-rval=0; \
        !           266:        ./check_addr $(srcdir)/regress/parser/check_addr.in; \
        !           267:        rval=`expr $$rval + $$?`; \
        !           268:        ./check_fill; \
        !           269:        rval=`expr $$rval + $$?`; \
        !           270:        ./check_iolog_path $(srcdir)/regress/iolog_path/data; \
        !           271:        rval=`expr $$rval + $$?`; \
        !           272:        ./check_wrap $(srcdir)/regress/logging/check_wrap.in > check_wrap.out; \
        !           273:        diff check_wrap.out $(srcdir)/regress/logging/check_wrap.out.ok; \
        !           274:        rval=`expr $$rval + $$?`; \
        !           275:        passed=0; failed=0; total=0; \
        !           276:            for t in $(srcdir)/regress/sudoers/*.in; do \
        !           277:                dir=`dirname $$t`; \
        !           278:                dirbase=`basename $$dir`; \
        !           279:                base=`basename $$t .in`; \
        !           280:                out="$${base}.out"; \
        !           281:                toke="$${base}.toke"; \
        !           282:                ./testsudoers -dt <$$t >$$out 2>$$toke; \
        !           283:                if cmp $$out $$dir/$$out.ok >/dev/null; then \
        !           284:                    passed=`expr $$passed + 1`; \
        !           285:                    echo "$$dirbase/$$base (parse): OK"; \
        !           286:                else \
        !           287:                    failed=`expr $$failed + 1`; \
        !           288:                    echo "$$dirbase/$$base: FAIL"; \
        !           289:                    diff $$out $$dir/$$out.ok; \
        !           290:                fi; \
        !           291:                total=`expr $$total + 1`; \
        !           292:                if cmp $$toke $$dir/$$toke.ok >/dev/null; then \
        !           293:                    passed=`expr $$passed + 1`; \
        !           294:                    echo "$$dirbase/$$base (toke):  OK"; \
        !           295:                else \
        !           296:                    failed=`expr $$failed + 1`; \
        !           297:                    echo "$$dirbase/$$base (toke):  FAIL"; \
        !           298:                    diff $$out $$dir/$$out.ok; \
        !           299:                fi; \
        !           300:                total=`expr $$total + 1`; \
        !           301:            done; \
        !           302:            echo "$$dirbase: $$passed/$$total tests passed; $$failed/$$total tests failed"; \
        !           303:        rval=`expr $$rval + $$failed`; \
        !           304:        passed=0; failed=0; total=0; \
        !           305:            for t in $(srcdir)/regress/*/*.sh; do \
        !           306:                dir=`dirname $$t`; \
        !           307:                dirbase=`basename $$dir`; \
        !           308:                base=`basename $$t .sh`; \
        !           309:                out="$${base}.out"; \
        !           310:                err="$${base}.err"; \
        !           311:                $(SHELL) $$t >$$out 2>$$err; \
        !           312:                if cmp $$out $$dir/$$out.ok >/dev/null; then \
        !           313:                    passed=`expr $$passed + 1`; \
        !           314:                    echo "$$dirbase/$$base: OK"; \
        !           315:                else \
        !           316:                    failed=`expr $$failed + 1`; \
        !           317:                    echo "$$dirbase/$$base: FAIL"; \
        !           318:                    diff $$out $$dir/$$out.ok; \
        !           319:                fi; \
        !           320:                total=`expr $$total + 1`; \
        !           321:                if test -s $$dir/$$err.ok; then \
        !           322:                    if cmp $$err $$dir/$$err.ok >/dev/null; then \
        !           323:                        passed=`expr $$passed + 1`; \
        !           324:                        echo "$$dirbase/$$base (stderr): OK"; \
        !           325:                    else \
        !           326:                        failed=`expr $$failed + 1`; \
        !           327:                        echo "$$dirbase/$$base (stderr): FAIL"; \
        !           328:                        diff $$out $$dir/$$out.ok; \
        !           329:                    fi; \
        !           330:                    total=`expr $$total + 1`; \
        !           331:                elif test -s $$err; then \
        !           332:                    cat $$err 1>&2; \
        !           333:                fi; \
        !           334:            done; \
        !           335:            echo "$$dirbase: $$passed/$$total tests passed; $$failed/$$total tests failed"; \
        !           336:            rval=`expr $$rval + $$failed`; exit $$rval
        !           337: 
        !           338: clean:
        !           339:        -$(LIBTOOL) --mode=clean rm -f $(PROGS) $(TEST_PROGS) *.lo *.o *.la *.a stamp-* core *.core core.* *.out *.toke *.err
        !           340: 
        !           341: mostlyclean: clean
        !           342: 
        !           343: distclean: clean
        !           344:        -rm -rf Makefile sudoers sudoers.lo .libs $(LINKS)
        !           345: 
        !           346: clobber: distclean
        !           347: 
        !           348: realclean: distclean
        !           349:        rm -f TAGS tags
        !           350: 
        !           351: cleandir: realclean
        !           352: 
        !           353: # Autogenerated dependencies, do not modify
        !           354: afs.lo: $(authdir)/afs.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
        !           355:         $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
        !           356:         $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
        !           357:         $(srcdir)/defaults.h $(srcdir)/def_data.h $(srcdir)/logging.h \
        !           358:         $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h $(incdir)/gettext.h
        !           359:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/afs.c
        !           360: aix_auth.lo: $(authdir)/aix_auth.c $(top_builddir)/config.h \
        !           361:              $(srcdir)/sudoers.h $(top_builddir)/pathnames.h \
        !           362:              $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
        !           363:              $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
        !           364:              $(srcdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
        !           365:              $(incdir)/sudo_plugin.h $(incdir)/gettext.h
        !           366:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/aix_auth.c
        !           367: alias.lo: $(srcdir)/alias.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
        !           368:           $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
        !           369:           $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
        !           370:           $(srcdir)/defaults.h $(srcdir)/def_data.h $(srcdir)/logging.h \
        !           371:           $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h $(incdir)/gettext.h \
        !           372:           $(srcdir)/parse.h $(srcdir)/redblack.h $(srcdir)/gram.h
        !           373:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/alias.c
        !           374: audit.lo: $(srcdir)/audit.c $(top_builddir)/config.h $(incdir)/missing.h \
        !           375:           $(srcdir)/logging.h $(srcdir)/bsm_audit.h $(srcdir)/linux_audit.h
        !           376:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/audit.c
        !           377: boottime.lo: $(srcdir)/boottime.c $(top_builddir)/config.h $(incdir)/missing.h
        !           378:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/boottime.c
        !           379: bsdauth.lo: $(authdir)/bsdauth.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
        !           380:             $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
        !           381:             $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
        !           382:             $(srcdir)/defaults.h $(srcdir)/def_data.h $(srcdir)/logging.h \
        !           383:             $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h $(incdir)/gettext.h
        !           384:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/bsdauth.c
        !           385: bsm_audit.lo: $(srcdir)/bsm_audit.c $(top_builddir)/config.h \
        !           386:               $(srcdir)/bsm_audit.h
        !           387:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/bsm_audit.c
        !           388: check.lo: $(srcdir)/check.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
        !           389:           $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
        !           390:           $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
        !           391:           $(srcdir)/defaults.h $(srcdir)/def_data.h $(srcdir)/logging.h \
        !           392:           $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h $(incdir)/gettext.h
        !           393:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/check.c
        !           394: check_addr.o: $(srcdir)/regress/parser/check_addr.c $(top_builddir)/config.h \
        !           395:               $(srcdir)/sudoers.h $(top_builddir)/pathnames.h \
        !           396:               $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
        !           397:               $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
        !           398:               $(srcdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
        !           399:               $(incdir)/sudo_plugin.h $(incdir)/gettext.h $(srcdir)/parse.h \
        !           400:               $(srcdir)/interfaces.h
        !           401:        $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/regress/parser/check_addr.c
        !           402: check_fill.o: $(srcdir)/regress/parser/check_fill.c $(top_builddir)/config.h \
        !           403:               $(incdir)/list.h $(srcdir)/parse.h $(srcdir)/toke.h \
        !           404:               $(srcdir)/gram.h
        !           405:        $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/regress/parser/check_fill.c
        !           406: check_iolog_path.o: $(srcdir)/regress/iolog_path/check_iolog_path.c \
        !           407:                     $(top_builddir)/config.h $(srcdir)/sudoers.h \
        !           408:                     $(top_builddir)/pathnames.h $(incdir)/missing.h \
        !           409:                     $(incdir)/error.h $(incdir)/alloc.h $(incdir)/list.h \
        !           410:                     $(incdir)/fileops.h $(srcdir)/defaults.h \
        !           411:                     $(srcdir)/def_data.h $(srcdir)/logging.h \
        !           412:                     $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h \
        !           413:                     $(incdir)/gettext.h $(srcdir)/def_data.c
        !           414:        $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/regress/iolog_path/check_iolog_path.c
        !           415: check_wrap.o: $(srcdir)/regress/logging/check_wrap.c $(top_builddir)/config.h \
        !           416:               $(incdir)/missing.h $(incdir)/error.h
        !           417:        $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/regress/logging/check_wrap.c
        !           418: dce.lo: $(authdir)/dce.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
        !           419:         $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
        !           420:         $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
        !           421:         $(srcdir)/defaults.h $(srcdir)/def_data.h $(srcdir)/logging.h \
        !           422:         $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h $(incdir)/gettext.h
        !           423:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/dce.c
        !           424: defaults.lo: $(srcdir)/defaults.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
        !           425:              $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
        !           426:              $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
        !           427:              $(srcdir)/defaults.h $(srcdir)/def_data.h $(srcdir)/logging.h \
        !           428:              $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h $(incdir)/gettext.h \
        !           429:              $(srcdir)/parse.h $(srcdir)/gram.h $(srcdir)/def_data.c
        !           430:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/defaults.c
        !           431: env.lo: $(srcdir)/env.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
        !           432:         $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
        !           433:         $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
        !           434:         $(srcdir)/defaults.h $(srcdir)/def_data.h $(srcdir)/logging.h \
        !           435:         $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h $(incdir)/gettext.h
        !           436:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/env.c
        !           437: error.o: $(top_srcdir)/src/error.c $(top_builddir)/config.h \
        !           438:          $(incdir)/missing.h $(incdir)/error.h $(incdir)/gettext.h
        !           439:        $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(top_srcdir)/src/error.c
        !           440: find_path.lo: $(srcdir)/find_path.c $(top_builddir)/config.h \
        !           441:               $(srcdir)/sudoers.h $(top_builddir)/pathnames.h \
        !           442:               $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
        !           443:               $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
        !           444:               $(srcdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
        !           445:               $(incdir)/sudo_plugin.h $(incdir)/gettext.h
        !           446:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/find_path.c
        !           447: find_path.o: find_path.lo
        !           448: fwtk.lo: $(authdir)/fwtk.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
        !           449:          $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
        !           450:          $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
        !           451:          $(srcdir)/defaults.h $(srcdir)/def_data.h $(srcdir)/logging.h \
        !           452:          $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h $(incdir)/gettext.h
        !           453:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/fwtk.c
        !           454: getdate.o: $(devdir)/getdate.c $(top_builddir)/config.h \
        !           455:            $(top_builddir)/config.h $(incdir)/missing.h
        !           456:        $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(devdir)/getdate.c
        !           457: getspwuid.lo: $(srcdir)/getspwuid.c $(top_builddir)/config.h \
        !           458:               $(srcdir)/sudoers.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:               $(srcdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
        !           462:               $(incdir)/sudo_plugin.h $(incdir)/gettext.h
        !           463:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/getspwuid.c
        !           464: goodpath.lo: $(srcdir)/goodpath.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
        !           465:              $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
        !           466:              $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
        !           467:              $(srcdir)/defaults.h $(srcdir)/def_data.h $(srcdir)/logging.h \
        !           468:              $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h $(incdir)/gettext.h
        !           469:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/goodpath.c
        !           470: goodpath.o: goodpath.lo
        !           471: gram.lo: $(devdir)/gram.c $(top_builddir)/config.h $(top_builddir)/config.h \
        !           472:          $(srcdir)/sudoers.h $(top_builddir)/pathnames.h $(incdir)/missing.h \
        !           473:          $(incdir)/error.h $(incdir)/alloc.h $(incdir)/list.h \
        !           474:          $(incdir)/fileops.h $(srcdir)/defaults.h $(srcdir)/def_data.h \
        !           475:          $(srcdir)/logging.h $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h \
        !           476:          $(incdir)/gettext.h $(srcdir)/parse.h $(srcdir)/toke.h
        !           477:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(devdir)/gram.c
        !           478: group_plugin.lo: $(srcdir)/group_plugin.c $(top_builddir)/config.h \
        !           479:                  $(top_srcdir)/compat/dlfcn.h $(srcdir)/sudoers.h \
        !           480:                  $(top_builddir)/pathnames.h $(incdir)/missing.h \
        !           481:                  $(incdir)/error.h $(incdir)/alloc.h $(incdir)/list.h \
        !           482:                  $(incdir)/fileops.h $(srcdir)/defaults.h $(srcdir)/def_data.h \
        !           483:                  $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
        !           484:                  $(incdir)/sudo_plugin.h $(incdir)/gettext.h
        !           485:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/group_plugin.c
        !           486: group_plugin.o: group_plugin.lo
        !           487: interfaces.lo: $(srcdir)/interfaces.c $(top_builddir)/config.h \
        !           488:                $(srcdir)/sudoers.h $(top_builddir)/pathnames.h \
        !           489:                $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
        !           490:                $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
        !           491:                $(srcdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
        !           492:                $(incdir)/sudo_plugin.h $(incdir)/gettext.h \
        !           493:                $(srcdir)/interfaces.h
        !           494:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/interfaces.c
        !           495: interfaces.o: interfaces.lo
        !           496: iolog.lo: $(srcdir)/iolog.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
        !           497:           $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
        !           498:           $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
        !           499:           $(srcdir)/defaults.h $(srcdir)/def_data.h $(srcdir)/logging.h \
        !           500:           $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h $(incdir)/gettext.h
        !           501:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/iolog.c
        !           502: iolog_path.lo: $(srcdir)/iolog_path.c $(top_builddir)/config.h \
        !           503:                $(srcdir)/sudoers.h $(top_builddir)/pathnames.h \
        !           504:                $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
        !           505:                $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
        !           506:                $(srcdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
        !           507:                $(incdir)/sudo_plugin.h $(incdir)/gettext.h
        !           508:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/iolog_path.c
        !           509: iolog_path.o: iolog_path.lo
        !           510: kerb4.lo: $(authdir)/kerb4.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
        !           511:           $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
        !           512:           $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
        !           513:           $(srcdir)/defaults.h $(srcdir)/def_data.h $(srcdir)/logging.h \
        !           514:           $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h $(incdir)/gettext.h
        !           515:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/kerb4.c
        !           516: kerb5.lo: $(authdir)/kerb5.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
        !           517:           $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
        !           518:           $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
        !           519:           $(srcdir)/defaults.h $(srcdir)/def_data.h $(srcdir)/logging.h \
        !           520:           $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h $(incdir)/gettext.h
        !           521:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/kerb5.c
        !           522: ldap.lo: $(srcdir)/ldap.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
        !           523:          $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
        !           524:          $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
        !           525:          $(srcdir)/defaults.h $(srcdir)/def_data.h $(srcdir)/logging.h \
        !           526:          $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h $(incdir)/gettext.h \
        !           527:          $(srcdir)/parse.h $(incdir)/lbuf.h
        !           528:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/ldap.c
        !           529: linux_audit.lo: $(srcdir)/linux_audit.c $(top_builddir)/config.h \
        !           530:                 $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
        !           531:                 $(incdir)/gettext.h $(srcdir)/linux_audit.h
        !           532:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/linux_audit.c
        !           533: logging.lo: $(srcdir)/logging.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
        !           534:             $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
        !           535:             $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
        !           536:             $(srcdir)/defaults.h $(srcdir)/def_data.h $(srcdir)/logging.h \
        !           537:             $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h $(incdir)/gettext.h
        !           538:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/logging.c
        !           539: logwrap.lo: $(srcdir)/logwrap.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
        !           540:             $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
        !           541:             $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
        !           542:             $(srcdir)/defaults.h $(srcdir)/def_data.h $(srcdir)/logging.h \
        !           543:             $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h $(incdir)/gettext.h
        !           544:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/logwrap.c
        !           545: logwrap.o: logwrap.lo
        !           546: match.lo: $(srcdir)/match.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
        !           547:           $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
        !           548:           $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
        !           549:           $(srcdir)/defaults.h $(srcdir)/def_data.h $(srcdir)/logging.h \
        !           550:           $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h $(incdir)/gettext.h \
        !           551:           $(srcdir)/parse.h $(srcdir)/gram.h $(top_srcdir)/compat/fnmatch.h \
        !           552:           $(top_srcdir)/compat/glob.h
        !           553:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/match.c
        !           554: match_addr.lo: $(srcdir)/match_addr.c $(top_builddir)/config.h \
        !           555:                $(srcdir)/sudoers.h $(top_builddir)/pathnames.h \
        !           556:                $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
        !           557:                $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
        !           558:                $(srcdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
        !           559:                $(incdir)/sudo_plugin.h $(incdir)/gettext.h \
        !           560:                $(srcdir)/interfaces.h
        !           561:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/match_addr.c
        !           562: match_addr.o: match_addr.lo
        !           563: net_ifs.o: $(top_srcdir)/src/net_ifs.c $(top_builddir)/config.h \
        !           564:            $(incdir)/missing.h $(incdir)/alloc.h $(incdir)/error.h \
        !           565:            $(incdir)/gettext.h
        !           566:        $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(top_srcdir)/src/net_ifs.c
        !           567: pam.lo: $(authdir)/pam.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
        !           568:         $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
        !           569:         $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
        !           570:         $(srcdir)/defaults.h $(srcdir)/def_data.h $(srcdir)/logging.h \
        !           571:         $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h $(incdir)/gettext.h
        !           572:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/pam.c
        !           573: parse.lo: $(srcdir)/parse.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
        !           574:           $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
        !           575:           $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
        !           576:           $(srcdir)/defaults.h $(srcdir)/def_data.h $(srcdir)/logging.h \
        !           577:           $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h $(incdir)/gettext.h \
        !           578:           $(srcdir)/parse.h $(incdir)/lbuf.h $(srcdir)/gram.h
        !           579:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/parse.c
        !           580: passwd.lo: $(authdir)/passwd.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
        !           581:            $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
        !           582:            $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
        !           583:            $(srcdir)/defaults.h $(srcdir)/def_data.h $(srcdir)/logging.h \
        !           584:            $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h $(incdir)/gettext.h
        !           585:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/passwd.c
        !           586: plugin_error.lo: $(srcdir)/plugin_error.c $(top_builddir)/config.h \
        !           587:                  $(incdir)/missing.h $(incdir)/alloc.h $(incdir)/error.h \
        !           588:                  $(incdir)/sudo_plugin.h $(incdir)/gettext.h
        !           589:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/plugin_error.c
        !           590: pwutil.lo: $(srcdir)/pwutil.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
        !           591:            $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
        !           592:            $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
        !           593:            $(srcdir)/defaults.h $(srcdir)/def_data.h $(srcdir)/logging.h \
        !           594:            $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h $(incdir)/gettext.h \
        !           595:            $(srcdir)/redblack.h
        !           596:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/pwutil.c
        !           597: pwutil.o: pwutil.lo
        !           598: redblack.lo: $(srcdir)/redblack.c $(top_builddir)/config.h $(incdir)/missing.h \
        !           599:              $(incdir)/alloc.h $(srcdir)/redblack.h
        !           600:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/redblack.c
        !           601: redblack.o: redblack.lo
        !           602: rfc1938.lo: $(authdir)/rfc1938.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
        !           603:             $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
        !           604:             $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
        !           605:             $(srcdir)/defaults.h $(srcdir)/def_data.h $(srcdir)/logging.h \
        !           606:             $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h $(incdir)/gettext.h
        !           607:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/rfc1938.c
        !           608: secureware.lo: $(authdir)/secureware.c $(top_builddir)/config.h \
        !           609:                $(srcdir)/sudoers.h $(top_builddir)/pathnames.h \
        !           610:                $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
        !           611:                $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
        !           612:                $(srcdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
        !           613:                $(incdir)/sudo_plugin.h $(incdir)/gettext.h
        !           614:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/secureware.c
        !           615: securid.lo: $(authdir)/securid.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
        !           616:             $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
        !           617:             $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
        !           618:             $(srcdir)/defaults.h $(srcdir)/def_data.h $(srcdir)/logging.h \
        !           619:             $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h $(incdir)/gettext.h
        !           620:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/securid.c
        !           621: securid5.lo: $(authdir)/securid5.c $(top_builddir)/config.h \
        !           622:              $(srcdir)/sudoers.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:              $(srcdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
        !           626:              $(incdir)/sudo_plugin.h $(incdir)/gettext.h
        !           627:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/securid5.c
        !           628: set_perms.lo: $(srcdir)/set_perms.c $(top_builddir)/config.h \
        !           629:               $(srcdir)/sudoers.h $(top_builddir)/pathnames.h \
        !           630:               $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
        !           631:               $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
        !           632:               $(srcdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
        !           633:               $(incdir)/sudo_plugin.h $(incdir)/gettext.h
        !           634:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/set_perms.c
        !           635: sia.lo: $(authdir)/sia.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
        !           636:         $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
        !           637:         $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
        !           638:         $(srcdir)/defaults.h $(srcdir)/def_data.h $(srcdir)/logging.h \
        !           639:         $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h $(incdir)/gettext.h
        !           640:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/sia.c
        !           641: sudo_auth.lo: $(authdir)/sudo_auth.c $(top_builddir)/config.h \
        !           642:               $(srcdir)/sudoers.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:               $(srcdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
        !           646:               $(incdir)/sudo_plugin.h $(incdir)/gettext.h $(srcdir)/insults.h \
        !           647:               $(srcdir)/ins_2001.h $(srcdir)/ins_goons.h \
        !           648:               $(srcdir)/ins_classic.h $(srcdir)/ins_csops.h
        !           649:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(authdir)/sudo_auth.c
        !           650: sudo_nss.lo: $(srcdir)/sudo_nss.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
        !           651:              $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
        !           652:              $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
        !           653:              $(srcdir)/defaults.h $(srcdir)/def_data.h $(srcdir)/logging.h \
        !           654:              $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h $(incdir)/gettext.h \
        !           655:              $(incdir)/lbuf.h
        !           656:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/sudo_nss.c
        !           657: sudoers.lo: $(srcdir)/sudoers.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
        !           658:             $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
        !           659:             $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
        !           660:             $(srcdir)/defaults.h $(srcdir)/def_data.h $(srcdir)/logging.h \
        !           661:             $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h $(incdir)/gettext.h \
        !           662:             $(srcdir)/interfaces.h $(srcdir)/sudoers_version.h \
        !           663:             $(srcdir)/auth/sudo_auth.h
        !           664:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/sudoers.c
        !           665: sudoreplay.o: $(srcdir)/sudoreplay.c $(top_builddir)/config.h \
        !           666:               $(top_srcdir)/compat/timespec.h $(top_builddir)/pathnames.h \
        !           667:               $(incdir)/missing.h $(incdir)/alloc.h $(incdir)/error.h \
        !           668:               $(incdir)/gettext.h
        !           669:        $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/sudoreplay.c
        !           670: testsudoers.o: $(srcdir)/testsudoers.c $(top_builddir)/config.h \
        !           671:                $(srcdir)/tsgetgrpw.h $(top_builddir)/config.h \
        !           672:                $(srcdir)/sudoers.h $(top_builddir)/pathnames.h \
        !           673:                $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
        !           674:                $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
        !           675:                $(srcdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
        !           676:                $(incdir)/sudo_plugin.h $(incdir)/gettext.h \
        !           677:                $(srcdir)/interfaces.h $(srcdir)/parse.h $(srcdir)/gram.h \
        !           678:                $(top_srcdir)/compat/fnmatch.h
        !           679:        $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/testsudoers.c
        !           680: timestr.lo: $(srcdir)/timestr.c $(top_builddir)/config.h $(incdir)/missing.h
        !           681:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/timestr.c
        !           682: toke.lo: $(devdir)/toke.c $(top_builddir)/config.h $(top_builddir)/config.h \
        !           683:          $(srcdir)/sudoers.h $(top_builddir)/pathnames.h $(incdir)/missing.h \
        !           684:          $(incdir)/error.h $(incdir)/alloc.h $(incdir)/list.h \
        !           685:          $(incdir)/fileops.h $(srcdir)/defaults.h $(srcdir)/def_data.h \
        !           686:          $(srcdir)/logging.h $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h \
        !           687:          $(incdir)/gettext.h $(srcdir)/parse.h $(srcdir)/toke.h $(srcdir)/gram.h
        !           688:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(devdir)/toke.c
        !           689: toke_util.lo: $(srcdir)/toke_util.c $(top_builddir)/config.h \
        !           690:               $(srcdir)/sudoers.h $(top_builddir)/pathnames.h \
        !           691:               $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
        !           692:               $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
        !           693:               $(srcdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
        !           694:               $(incdir)/sudo_plugin.h $(incdir)/gettext.h $(srcdir)/parse.h \
        !           695:               $(srcdir)/toke.h $(srcdir)/gram.h
        !           696:        $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/toke_util.c
        !           697: toke_util.o: toke_util.lo
        !           698: tsgetgrpw.o: $(srcdir)/tsgetgrpw.c $(top_builddir)/config.h \
        !           699:              $(srcdir)/tsgetgrpw.h $(top_builddir)/config.h \
        !           700:              $(srcdir)/sudoers.h $(top_builddir)/pathnames.h \
        !           701:              $(incdir)/missing.h $(incdir)/error.h $(incdir)/alloc.h \
        !           702:              $(incdir)/list.h $(incdir)/fileops.h $(srcdir)/defaults.h \
        !           703:              $(srcdir)/def_data.h $(srcdir)/logging.h $(srcdir)/sudo_nss.h \
        !           704:              $(incdir)/sudo_plugin.h $(incdir)/gettext.h
        !           705:        $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/tsgetgrpw.c
        !           706: visudo.o: $(srcdir)/visudo.c $(top_builddir)/config.h $(srcdir)/sudoers.h \
        !           707:           $(top_builddir)/pathnames.h $(incdir)/missing.h $(incdir)/error.h \
        !           708:           $(incdir)/alloc.h $(incdir)/list.h $(incdir)/fileops.h \
        !           709:           $(srcdir)/defaults.h $(srcdir)/def_data.h $(srcdir)/logging.h \
        !           710:           $(srcdir)/sudo_nss.h $(incdir)/sudo_plugin.h $(incdir)/gettext.h \
        !           711:           $(srcdir)/interfaces.h $(srcdir)/parse.h $(srcdir)/redblack.h \
        !           712:           $(incdir)/gettext.h $(srcdir)/sudoers_version.h $(srcdir)/gram.h
        !           713:        $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/visudo.c

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>