~ubuntu-branches/ubuntu/maverick/krb5/maverick

« back to all changes in this revision

Viewing changes to src/lib/krb5/krb/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Sam Hartman
  • Date: 2009-05-07 16:16:34 UTC
  • mfrom: (13.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20090507161634-xqyk0s9na0le4flj
Tags: 1.7dfsg~beta1-4
When  decrypting the TGS response fails with the subkey, try with the
session key to work around Heimdal bug, Closes: #527353 

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
        enc_helper.o    \
41
41
        encode_kdc.o    \
42
42
        encrypt_tk.o    \
 
43
        fast.o \
43
44
        free_rtree.o    \
44
45
        fwd_tgt.o       \
45
46
        gc_frm_kdc.o    \
64
65
        mk_req.o        \
65
66
        mk_req_ext.o    \
66
67
        mk_safe.o       \
 
68
        pac.o           \
67
69
        parse.o         \
68
70
        pr_to_salt.o    \
69
71
        preauth.o       \
94
96
        str_conv.o      \
95
97
        tgtname.o       \
96
98
        unparse.o       \
97
 
        v4lifetime.o    \
98
99
        valid_times.o   \
99
100
        vfy_increds.o   \
100
101
        vic_opt.o       \
127
128
        $(OUTPRE)enc_helper.$(OBJEXT)   \
128
129
        $(OUTPRE)encode_kdc.$(OBJEXT)   \
129
130
        $(OUTPRE)encrypt_tk.$(OBJEXT)   \
 
131
        $(OUTPRE)fast.$(OBJEXT) \
130
132
        $(OUTPRE)free_rtree.$(OBJEXT)   \
131
133
        $(OUTPRE)fwd_tgt.$(OBJEXT)      \
132
134
        $(OUTPRE)gc_frm_kdc.$(OBJEXT)   \
151
153
        $(OUTPRE)mk_req.$(OBJEXT)       \
152
154
        $(OUTPRE)mk_req_ext.$(OBJEXT)   \
153
155
        $(OUTPRE)mk_safe.$(OBJEXT)      \
154
 
        $(OUTPRE)parse.$(OBJEXT)                \
 
156
        $(OUTPRE)pac.$(OBJEXT)          \
 
157
        $(OUTPRE)parse.$(OBJEXT)        \
155
158
        $(OUTPRE)pr_to_salt.$(OBJEXT)   \
156
159
        $(OUTPRE)preauth.$(OBJEXT)      \
157
160
        $(OUTPRE)preauth2.$(OBJEXT)     \
181
184
        $(OUTPRE)str_conv.$(OBJEXT)     \
182
185
        $(OUTPRE)tgtname.$(OBJEXT)      \
183
186
        $(OUTPRE)unparse.$(OBJEXT)      \
184
 
        $(OUTPRE)v4lifetime.$(OBJEXT)   \
185
187
        $(OUTPRE)valid_times.$(OBJEXT)  \
186
188
        $(OUTPRE)vfy_increds.$(OBJEXT)  \
187
189
        $(OUTPRE)vic_opt.$(OBJEXT)      \
215
217
        $(srcdir)/enc_helper.c  \
216
218
        $(srcdir)/encode_kdc.c  \
217
219
        $(srcdir)/encrypt_tk.c  \
 
220
        $(srcdir)/fast.c \
218
221
        $(srcdir)/free_rtree.c  \
219
222
        $(srcdir)/fwd_tgt.c     \
220
223
        $(srcdir)/gc_frm_kdc.c  \
239
242
        $(srcdir)/mk_req.c      \
240
243
        $(srcdir)/mk_req_ext.c  \
241
244
        $(srcdir)/mk_safe.c     \
 
245
        $(srcdir)/pac.c         \
242
246
        $(srcdir)/parse.c       \
243
247
        $(srcdir)/pr_to_salt.c  \
244
248
        $(srcdir)/preauth.c     \
267
271
        $(srcdir)/srv_dec_tkt.c \
268
272
        $(srcdir)/srv_rcache.c  \
269
273
        $(srcdir)/str_conv.c    \
 
274
        $(srcdir)/t_ad_fx_armor.c \
270
275
        $(srcdir)/tgtname.c     \
271
276
        $(srcdir)/unparse.c     \
272
 
        $(srcdir)/v4lifetime.c  \
273
277
        $(srcdir)/valid_times.c \
274
278
        $(srcdir)/vfy_increds.c \
275
279
        $(srcdir)/vic_opt.c     \
278
282
        $(srcdir)/t_kerb.c      \
279
283
        $(srcdir)/t_ser.c       \
280
284
        $(srcdir)/t_deltat.c    \
281
 
        $(srcdir)/t_expand.c
 
285
        $(srcdir)/t_expand.c    \
 
286
        $(srcdir)/t_pac.c       \
 
287
        $(srcdir)/t_princ.c
282
288
 
283
289
# Someday, when we have a "maintainer mode", do this right:
284
290
BISON=bison
297
303
COMERRLIB=$(TOPLIBD)/libcom_err.a
298
304
 
299
305
T_WALK_RTREE_OBJS= t_walk_rtree.o walk_rtree.o tgtname.o unparse.o \
300
 
        free_rtree.o bld_pr_ext.o 
 
306
        free_rtree.o bld_pr_ext.o copy_data.o
301
307
 
302
308
T_KERB_OBJS= t_kerb.o conv_princ.o unparse.o set_realm.o str_conv.o
303
309
 
306
312
 
307
313
T_DELTAT_OBJS= t_deltat.o deltat.o
308
314
 
 
315
T_PAC_OBJS= t_pac.o pac.o
 
316
 
 
317
T_PRINC_OBJS= t_princ.o parse.o unparse.o
 
318
 
309
319
t_walk_rtree: $(T_WALK_RTREE_OBJS) $(KRB5_BASE_DEPLIBS)
310
320
        $(CC_LINK) -o t_walk_rtree $(T_WALK_RTREE_OBJS) $(KRB5_BASE_LIBS)
 
321
t_ad_fx_armor: t_ad_fx_armor.o
 
322
        $(CC_LINK) -o $@ $< $(KRB5_BASE_LIBS)
 
323
 
 
324
t_authdata: t_authdata.o copy_auth.o
 
325
        $(CC_LINK) -o $@ $< copy_auth.o $(KRB5_BASE_LIBS)
311
326
 
312
327
t_kerb: $(T_KERB_OBJS) $(KRB5_BASE_DEPLIBS)
313
328
        $(CC_LINK) -o t_kerb $(T_KERB_OBJS) $(KRB5_BASE_LIBS)
314
329
 
315
 
t_ser: $(T_SER_OBJS) $(KDB5_DEPLIBS) $(KRB5_BASE_DEPLIBS)
316
 
        $(CC_LINK) -o t_ser $(T_SER_OBJS) \
317
 
                $(KDB5_LIBS) $(KRB5_BASE_LIBS) $(DL_LIB) $(THREAD_LINKOPTS)
 
330
t_ser: $(T_SER_OBJS) $(KRB5_BASE_DEPLIBS)
 
331
        $(CC_LINK) -o t_ser $(T_SER_OBJS) $(KRB5_BASE_LIBS) 
318
332
 
319
333
t_deltat : $(T_DELTAT_OBJS) $(SUPPORT_DEPLIB)
320
334
        $(CC_LINK) -o t_deltat $(T_DELTAT_OBJS) $(SUPPORT_LIB)
324
338
t_expand : $(T_EXPAND_OBJS) $(KRB5_BASE_DEPLIBS)
325
339
        $(CC_LINK) -o t_expand $(T_EXPAND_OBJS) $(KRB5_BASE_LIBS)
326
340
 
327
 
TEST_PROGS= t_walk_rtree t_kerb t_ser t_deltat t_expand
 
341
t_pac: $(T_PAC_OBJS) $(KRB5_BASE_DEPLIBS)
 
342
        $(CC_LINK) -o t_pac $(T_PAC_OBJS) $(KRB5_BASE_LIBS)
 
343
 
 
344
t_princ: $(T_PRINC_OBJS) $(KRB5_BASE_DEPLIBS)
 
345
        $(CC_LINK) -o t_princ $(T_PRINC_OBJS) $(KRB5_BASE_LIBS)
 
346
 
 
347
TEST_PROGS= t_walk_rtree t_kerb t_ser t_deltat t_expand t_authdata t_pac \
 
348
        t_princ
328
349
 
329
350
check-unix:: $(TEST_PROGS)
330
351
        KRB5_CONFIG=$(srcdir)/t_krb5.conf ; export KRB5_CONFIG ;\
355
376
                $(RUN_SETUP) $(VALGRIND) ./t_ser
356
377
        $(RUN_SETUP) $(VALGRIND) ./t_deltat
357
378
        $(RUN_SETUP) $(VALGRIND) sh $(srcdir)/transit-tests
 
379
        KRB5_CONFIG=$(srcdir)/t_krb5.conf ; export KRB5_CONFIG ;\
 
380
                $(RUN_SETUP) $(VALGRIND) sh $(srcdir)/walktree-tests
 
381
        KRB5_CONFIG=$(srcdir)/t_krb5.conf ; export KRB5_CONFIG ;\
 
382
        $(RUN_SETUP) $(VALGRIND) ./t_authdata
 
383
        $(RUN_SETUP) $(VALGRIND) ./t_pac
 
384
        $(RUN_SETUP) $(VALGRIND) ./t_princ
358
385
 
359
386
clean::
360
387
        $(RM) $(OUTPRE)t_walk_rtree$(EXEEXT) $(OUTPRE)t_walk_rtree.$(OBJEXT) \
361
388
                $(OUTPRE)t_kerb$(EXEEXT) $(OUTPRE)t_kerb.$(OBJEXT)      \
362
389
                $(OUTPRE)t_ser$(EXEEXT) $(OUTPRE)t_ser.$(OBJEXT)        \
363
390
                $(OUTPRE)t_deltat$(EXEEXT) $(OUTPRE)t_deltat.$(OBJEXT) \
364
 
                $(OUTPRE)t_expand$(EXEEXT) $(OUTPRE)t_expand.$(OBJEXT)
 
391
                $(OUTPRE)t_expand$(EXEEXT) $(OUTPRE)t_expand.$(OBJEXT)  \
 
392
        $(OUTPRE)t_authdata$(EXEEXT) $(OUTPRE)t_authdata.$(OBJEXT)
365
393
 
366
394
@libobj_frag@
367
395
 
368
 
# +++ Dependency line eater +++
369
 
370
 
# Makefile dependencies follow.  This must be the last section in
371
 
# the Makefile.in file
372
 
#
373
 
addr_comp.so addr_comp.po $(OUTPRE)addr_comp.$(OBJEXT): \
374
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
375
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
376
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
377
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
378
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
379
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
380
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
381
 
  $(SRCTOP)/include/socket-utils.h addr_comp.c
382
 
addr_order.so addr_order.po $(OUTPRE)addr_order.$(OBJEXT): \
383
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
384
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
385
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
386
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
387
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
388
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
389
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
390
 
  $(SRCTOP)/include/socket-utils.h addr_order.c
391
 
addr_srch.so addr_srch.po $(OUTPRE)addr_srch.$(OBJEXT): \
392
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
393
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
394
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
395
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
396
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
397
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
398
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
399
 
  $(SRCTOP)/include/socket-utils.h addr_srch.c
400
 
appdefault.so appdefault.po $(OUTPRE)appdefault.$(OBJEXT): \
401
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
402
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
403
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
404
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
405
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
406
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
407
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
408
 
  $(SRCTOP)/include/socket-utils.h appdefault.c
409
 
auth_con.so auth_con.po $(OUTPRE)auth_con.$(OBJEXT): \
410
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
411
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
412
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
413
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
414
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
415
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
416
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
417
 
  $(SRCTOP)/include/socket-utils.h auth_con.c auth_con.h
418
 
bld_pr_ext.so bld_pr_ext.po $(OUTPRE)bld_pr_ext.$(OBJEXT): \
419
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
420
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
421
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
422
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
423
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
424
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
425
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
426
 
  $(SRCTOP)/include/socket-utils.h bld_pr_ext.c
427
 
bld_princ.so bld_princ.po $(OUTPRE)bld_princ.$(OBJEXT): \
428
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
429
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
430
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
431
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
432
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
433
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
434
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
435
 
  $(SRCTOP)/include/socket-utils.h bld_princ.c
436
 
brand.so brand.po $(OUTPRE)brand.$(OBJEXT): $(SRCTOP)/patchlevel.h \
437
 
  brand.c
438
 
chk_trans.so chk_trans.po $(OUTPRE)chk_trans.$(OBJEXT): \
439
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
440
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
441
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
442
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
443
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
444
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
445
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
446
 
  $(SRCTOP)/include/socket-utils.h chk_trans.c
447
 
chpw.so chpw.po $(OUTPRE)chpw.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \
448
 
  $(BUILDTOP)/include/krb5/krb5.h $(BUILDTOP)/include/krb5_err.h \
449
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
450
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
451
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
452
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
453
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
454
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
455
 
  $(SRCTOP)/include/socket-utils.h auth_con.h chpw.c
456
 
conv_creds.so conv_creds.po $(OUTPRE)conv_creds.$(OBJEXT): \
457
 
  $(BUILDTOP)/include/autoconf.h $(KRB_ERR_H_DEP) $(BUILDTOP)/include/krb5/krb5.h \
458
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
459
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
460
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
461
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
462
 
  $(SRCTOP)/include/kerberosIV/des.h $(SRCTOP)/include/kerberosIV/krb.h \
463
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
464
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
465
 
  $(SRCTOP)/include/socket-utils.h conv_creds.c
466
 
conv_princ.so conv_princ.po $(OUTPRE)conv_princ.$(OBJEXT): \
467
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
468
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
469
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
470
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
471
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
472
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
473
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
474
 
  $(SRCTOP)/include/socket-utils.h conv_princ.c
475
 
copy_addrs.so copy_addrs.po $(OUTPRE)copy_addrs.$(OBJEXT): \
476
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
477
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
478
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
479
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
480
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
481
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
482
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
483
 
  $(SRCTOP)/include/socket-utils.h copy_addrs.c
484
 
copy_auth.so copy_auth.po $(OUTPRE)copy_auth.$(OBJEXT): \
485
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
486
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
487
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
488
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
489
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
490
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
491
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
492
 
  $(SRCTOP)/include/socket-utils.h copy_auth.c
493
 
copy_athctr.so copy_athctr.po $(OUTPRE)copy_athctr.$(OBJEXT): \
494
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
495
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
496
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
497
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
498
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
499
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
500
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
501
 
  $(SRCTOP)/include/socket-utils.h copy_athctr.c
502
 
copy_cksum.so copy_cksum.po $(OUTPRE)copy_cksum.$(OBJEXT): \
503
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
504
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
505
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
506
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
507
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
508
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
509
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
510
 
  $(SRCTOP)/include/socket-utils.h copy_cksum.c
511
 
copy_creds.so copy_creds.po $(OUTPRE)copy_creds.$(OBJEXT): \
512
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
513
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
514
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
515
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
516
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
517
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
518
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
519
 
  $(SRCTOP)/include/socket-utils.h copy_creds.c
520
 
copy_data.so copy_data.po $(OUTPRE)copy_data.$(OBJEXT): \
521
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
522
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
523
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
524
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
525
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
526
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
527
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
528
 
  $(SRCTOP)/include/socket-utils.h copy_data.c
529
 
copy_key.so copy_key.po $(OUTPRE)copy_key.$(OBJEXT): \
530
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
531
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
532
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
533
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
534
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
535
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
536
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
537
 
  $(SRCTOP)/include/socket-utils.h copy_key.c
538
 
copy_princ.so copy_princ.po $(OUTPRE)copy_princ.$(OBJEXT): \
539
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
540
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
541
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
542
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
543
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
544
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
545
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
546
 
  $(SRCTOP)/include/socket-utils.h copy_princ.c
547
 
copy_tick.so copy_tick.po $(OUTPRE)copy_tick.$(OBJEXT): \
548
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
549
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
550
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
551
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
552
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
553
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
554
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
555
 
  $(SRCTOP)/include/socket-utils.h copy_tick.c
556
 
cp_key_cnt.so cp_key_cnt.po $(OUTPRE)cp_key_cnt.$(OBJEXT): \
557
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
558
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
559
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
560
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
561
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
562
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
563
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
564
 
  $(SRCTOP)/include/socket-utils.h cp_key_cnt.c
565
 
decode_kdc.so decode_kdc.po $(OUTPRE)decode_kdc.$(OBJEXT): \
566
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
567
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
568
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
569
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
570
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
571
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
572
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
573
 
  $(SRCTOP)/include/socket-utils.h decode_kdc.c
574
 
decrypt_tk.so decrypt_tk.po $(OUTPRE)decrypt_tk.$(OBJEXT): \
575
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
576
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
577
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
578
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
579
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
580
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
581
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
582
 
  $(SRCTOP)/include/socket-utils.h decrypt_tk.c
583
 
deltat.so deltat.po $(OUTPRE)deltat.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \
584
 
  $(BUILDTOP)/include/krb5/krb5.h $(BUILDTOP)/include/osconf.h \
585
 
  $(BUILDTOP)/include/profile.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h \
586
 
  $(SRCTOP)/include/k5-int-pkinit.h $(SRCTOP)/include/k5-int.h \
587
 
  $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-plugin.h \
588
 
  $(SRCTOP)/include/k5-thread.h $(SRCTOP)/include/krb5.h \
589
 
  $(SRCTOP)/include/krb5/locate_plugin.h $(SRCTOP)/include/krb5/preauth_plugin.h \
590
 
  $(SRCTOP)/include/port-sockets.h $(SRCTOP)/include/socket-utils.h \
591
 
  deltat.c
592
 
enc_helper.so enc_helper.po $(OUTPRE)enc_helper.$(OBJEXT): \
593
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
594
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
595
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
596
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
597
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
598
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
599
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
600
 
  $(SRCTOP)/include/socket-utils.h enc_helper.c
601
 
encode_kdc.so encode_kdc.po $(OUTPRE)encode_kdc.$(OBJEXT): \
602
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
603
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
604
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
605
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
606
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
607
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
608
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
609
 
  $(SRCTOP)/include/socket-utils.h encode_kdc.c
610
 
encrypt_tk.so encrypt_tk.po $(OUTPRE)encrypt_tk.$(OBJEXT): \
611
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
612
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
613
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
614
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
615
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
616
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
617
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
618
 
  $(SRCTOP)/include/socket-utils.h encrypt_tk.c
619
 
free_rtree.so free_rtree.po $(OUTPRE)free_rtree.$(OBJEXT): \
620
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
621
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
622
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
623
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
624
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
625
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
626
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
627
 
  $(SRCTOP)/include/socket-utils.h free_rtree.c
628
 
fwd_tgt.so fwd_tgt.po $(OUTPRE)fwd_tgt.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \
629
 
  $(BUILDTOP)/include/krb5/krb5.h $(BUILDTOP)/include/osconf.h \
630
 
  $(BUILDTOP)/include/profile.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h \
631
 
  $(SRCTOP)/include/k5-int-pkinit.h $(SRCTOP)/include/k5-int.h \
632
 
  $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-plugin.h \
633
 
  $(SRCTOP)/include/k5-thread.h $(SRCTOP)/include/krb5.h \
634
 
  $(SRCTOP)/include/krb5/locate_plugin.h $(SRCTOP)/include/krb5/preauth_plugin.h \
635
 
  $(SRCTOP)/include/port-sockets.h $(SRCTOP)/include/socket-utils.h \
636
 
  fwd_tgt.c
637
 
gc_frm_kdc.so gc_frm_kdc.po $(OUTPRE)gc_frm_kdc.$(OBJEXT): \
638
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
639
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
640
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
641
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
642
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
643
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
644
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
645
 
  $(SRCTOP)/include/socket-utils.h gc_frm_kdc.c int-proto.h
646
 
gc_via_tkt.so gc_via_tkt.po $(OUTPRE)gc_via_tkt.$(OBJEXT): \
647
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
648
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
649
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
650
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
651
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
652
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
653
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
654
 
  $(SRCTOP)/include/socket-utils.h gc_via_tkt.c int-proto.h
655
 
gen_seqnum.so gen_seqnum.po $(OUTPRE)gen_seqnum.$(OBJEXT): \
656
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
657
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
658
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
659
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
660
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
661
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
662
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
663
 
  $(SRCTOP)/include/socket-utils.h gen_seqnum.c
664
 
gen_subkey.so gen_subkey.po $(OUTPRE)gen_subkey.$(OBJEXT): \
665
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
666
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
667
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
668
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
669
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
670
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
671
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
672
 
  $(SRCTOP)/include/socket-utils.h gen_subkey.c
673
 
get_creds.so get_creds.po $(OUTPRE)get_creds.$(OBJEXT): \
674
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
675
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
676
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
677
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
678
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
679
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
680
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
681
 
  $(SRCTOP)/include/socket-utils.h get_creds.c
682
 
get_in_tkt.so get_in_tkt.po $(OUTPRE)get_in_tkt.$(OBJEXT): \
683
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
684
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
685
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
686
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
687
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
688
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
689
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
690
 
  $(SRCTOP)/include/socket-utils.h $(srcdir)/../os/os-proto.h \
691
 
  get_in_tkt.c int-proto.h
692
 
gic_keytab.so gic_keytab.po $(OUTPRE)gic_keytab.$(OBJEXT): \
693
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
694
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
695
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
696
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
697
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
698
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
699
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
700
 
  $(SRCTOP)/include/socket-utils.h gic_keytab.c
701
 
gic_opt.so gic_opt.po $(OUTPRE)gic_opt.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \
702
 
  $(BUILDTOP)/include/krb5/krb5.h $(BUILDTOP)/include/osconf.h \
703
 
  $(BUILDTOP)/include/profile.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h \
704
 
  $(SRCTOP)/include/k5-int-pkinit.h $(SRCTOP)/include/k5-int.h \
705
 
  $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-plugin.h \
706
 
  $(SRCTOP)/include/k5-thread.h $(SRCTOP)/include/krb5.h \
707
 
  $(SRCTOP)/include/krb5/locate_plugin.h $(SRCTOP)/include/krb5/preauth_plugin.h \
708
 
  $(SRCTOP)/include/port-sockets.h $(SRCTOP)/include/socket-utils.h \
709
 
  gic_opt.c int-proto.h
710
 
gic_pwd.so gic_pwd.po $(OUTPRE)gic_pwd.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \
711
 
  $(BUILDTOP)/include/krb5/krb5.h $(BUILDTOP)/include/osconf.h \
712
 
  $(BUILDTOP)/include/profile.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h \
713
 
  $(SRCTOP)/include/k5-int-pkinit.h $(SRCTOP)/include/k5-int.h \
714
 
  $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-plugin.h \
715
 
  $(SRCTOP)/include/k5-thread.h $(SRCTOP)/include/krb5.h \
716
 
  $(SRCTOP)/include/krb5/locate_plugin.h $(SRCTOP)/include/krb5/preauth_plugin.h \
717
 
  $(SRCTOP)/include/port-sockets.h $(SRCTOP)/include/socket-utils.h \
718
 
  gic_pwd.c
719
 
in_tkt_sky.so in_tkt_sky.po $(OUTPRE)in_tkt_sky.$(OBJEXT): \
720
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
721
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
722
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
723
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
724
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
725
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
726
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
727
 
  $(SRCTOP)/include/socket-utils.h in_tkt_sky.c
728
 
init_ctx.so init_ctx.po $(OUTPRE)init_ctx.$(OBJEXT): \
729
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
730
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
731
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
732
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
733
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
734
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
735
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
736
 
  $(SRCTOP)/include/socket-utils.h $(SRCTOP)/patchlevel.h \
737
 
  $(srcdir)/../krb5_libinit.h brand.c init_ctx.c
738
 
init_keyblock.so init_keyblock.po $(OUTPRE)init_keyblock.$(OBJEXT): \
739
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
740
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
741
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
742
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
743
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
744
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
745
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
746
 
  $(SRCTOP)/include/socket-utils.h init_keyblock.c
747
 
kdc_rep_dc.so kdc_rep_dc.po $(OUTPRE)kdc_rep_dc.$(OBJEXT): \
748
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
749
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
750
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
751
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
752
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
753
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
754
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
755
 
  $(SRCTOP)/include/socket-utils.h kdc_rep_dc.c
756
 
kerrs.so kerrs.po $(OUTPRE)kerrs.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \
757
 
  $(BUILDTOP)/include/krb5/krb5.h $(BUILDTOP)/include/osconf.h \
758
 
  $(BUILDTOP)/include/profile.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h \
759
 
  $(SRCTOP)/include/k5-int-pkinit.h $(SRCTOP)/include/k5-int.h \
760
 
  $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-plugin.h \
761
 
  $(SRCTOP)/include/k5-thread.h $(SRCTOP)/include/krb5.h \
762
 
  $(SRCTOP)/include/krb5/locate_plugin.h $(SRCTOP)/include/krb5/preauth_plugin.h \
763
 
  $(SRCTOP)/include/port-sockets.h $(SRCTOP)/include/socket-utils.h \
764
 
  kerrs.c
765
 
kfree.so kfree.po $(OUTPRE)kfree.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \
766
 
  $(BUILDTOP)/include/krb5/krb5.h $(BUILDTOP)/include/osconf.h \
767
 
  $(BUILDTOP)/include/profile.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h \
768
 
  $(SRCTOP)/include/k5-int-pkinit.h $(SRCTOP)/include/k5-int.h \
769
 
  $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-plugin.h \
770
 
  $(SRCTOP)/include/k5-thread.h $(SRCTOP)/include/krb5.h \
771
 
  $(SRCTOP)/include/krb5/locate_plugin.h $(SRCTOP)/include/krb5/preauth_plugin.h \
772
 
  $(SRCTOP)/include/port-sockets.h $(SRCTOP)/include/socket-utils.h \
773
 
  kfree.c
774
 
mk_cred.so mk_cred.po $(OUTPRE)mk_cred.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \
775
 
  $(BUILDTOP)/include/krb5/krb5.h $(BUILDTOP)/include/osconf.h \
776
 
  $(BUILDTOP)/include/profile.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h \
777
 
  $(SRCTOP)/include/k5-int-pkinit.h $(SRCTOP)/include/k5-int.h \
778
 
  $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-plugin.h \
779
 
  $(SRCTOP)/include/k5-thread.h $(SRCTOP)/include/krb5.h \
780
 
  $(SRCTOP)/include/krb5/locate_plugin.h $(SRCTOP)/include/krb5/preauth_plugin.h \
781
 
  $(SRCTOP)/include/port-sockets.h $(SRCTOP)/include/socket-utils.h \
782
 
  auth_con.h cleanup.h mk_cred.c
783
 
mk_error.so mk_error.po $(OUTPRE)mk_error.$(OBJEXT): \
784
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
785
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
786
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
787
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
788
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
789
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
790
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
791
 
  $(SRCTOP)/include/socket-utils.h mk_error.c
792
 
mk_priv.so mk_priv.po $(OUTPRE)mk_priv.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \
793
 
  $(BUILDTOP)/include/krb5/krb5.h $(BUILDTOP)/include/osconf.h \
794
 
  $(BUILDTOP)/include/profile.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h \
795
 
  $(SRCTOP)/include/k5-int-pkinit.h $(SRCTOP)/include/k5-int.h \
796
 
  $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-plugin.h \
797
 
  $(SRCTOP)/include/k5-thread.h $(SRCTOP)/include/krb5.h \
798
 
  $(SRCTOP)/include/krb5/locate_plugin.h $(SRCTOP)/include/krb5/preauth_plugin.h \
799
 
  $(SRCTOP)/include/port-sockets.h $(SRCTOP)/include/socket-utils.h \
800
 
  auth_con.h cleanup.h mk_priv.c
801
 
mk_rep.so mk_rep.po $(OUTPRE)mk_rep.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \
802
 
  $(BUILDTOP)/include/krb5/krb5.h $(BUILDTOP)/include/osconf.h \
803
 
  $(BUILDTOP)/include/profile.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h \
804
 
  $(SRCTOP)/include/k5-int-pkinit.h $(SRCTOP)/include/k5-int.h \
805
 
  $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-plugin.h \
806
 
  $(SRCTOP)/include/k5-thread.h $(SRCTOP)/include/krb5.h \
807
 
  $(SRCTOP)/include/krb5/locate_plugin.h $(SRCTOP)/include/krb5/preauth_plugin.h \
808
 
  $(SRCTOP)/include/port-sockets.h $(SRCTOP)/include/socket-utils.h \
809
 
  auth_con.h mk_rep.c
810
 
mk_req.so mk_req.po $(OUTPRE)mk_req.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \
811
 
  $(BUILDTOP)/include/krb5/krb5.h $(BUILDTOP)/include/osconf.h \
812
 
  $(BUILDTOP)/include/profile.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h \
813
 
  $(SRCTOP)/include/k5-int-pkinit.h $(SRCTOP)/include/k5-int.h \
814
 
  $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-plugin.h \
815
 
  $(SRCTOP)/include/k5-thread.h $(SRCTOP)/include/krb5.h \
816
 
  $(SRCTOP)/include/krb5/locate_plugin.h $(SRCTOP)/include/krb5/preauth_plugin.h \
817
 
  $(SRCTOP)/include/port-sockets.h $(SRCTOP)/include/socket-utils.h \
818
 
  auth_con.h mk_req.c
819
 
mk_req_ext.so mk_req_ext.po $(OUTPRE)mk_req_ext.$(OBJEXT): \
820
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
821
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
822
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
823
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
824
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
825
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
826
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
827
 
  $(SRCTOP)/include/socket-utils.h auth_con.h mk_req_ext.c
828
 
mk_safe.so mk_safe.po $(OUTPRE)mk_safe.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \
829
 
  $(BUILDTOP)/include/krb5/krb5.h $(BUILDTOP)/include/osconf.h \
830
 
  $(BUILDTOP)/include/profile.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h \
831
 
  $(SRCTOP)/include/k5-int-pkinit.h $(SRCTOP)/include/k5-int.h \
832
 
  $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-plugin.h \
833
 
  $(SRCTOP)/include/k5-thread.h $(SRCTOP)/include/krb5.h \
834
 
  $(SRCTOP)/include/krb5/locate_plugin.h $(SRCTOP)/include/krb5/preauth_plugin.h \
835
 
  $(SRCTOP)/include/port-sockets.h $(SRCTOP)/include/socket-utils.h \
836
 
  auth_con.h cleanup.h mk_safe.c
837
 
parse.so parse.po $(OUTPRE)parse.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \
838
 
  $(BUILDTOP)/include/krb5/krb5.h $(BUILDTOP)/include/osconf.h \
839
 
  $(BUILDTOP)/include/profile.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h \
840
 
  $(SRCTOP)/include/k5-int-pkinit.h $(SRCTOP)/include/k5-int.h \
841
 
  $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-plugin.h \
842
 
  $(SRCTOP)/include/k5-thread.h $(SRCTOP)/include/krb5.h \
843
 
  $(SRCTOP)/include/krb5/locate_plugin.h $(SRCTOP)/include/krb5/preauth_plugin.h \
844
 
  $(SRCTOP)/include/port-sockets.h $(SRCTOP)/include/socket-utils.h \
845
 
  parse.c
846
 
pr_to_salt.so pr_to_salt.po $(OUTPRE)pr_to_salt.$(OBJEXT): \
847
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
848
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
849
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
850
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
851
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
852
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
853
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
854
 
  $(SRCTOP)/include/socket-utils.h pr_to_salt.c
855
 
preauth.so preauth.po $(OUTPRE)preauth.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \
856
 
  $(BUILDTOP)/include/krb5/krb5.h $(BUILDTOP)/include/osconf.h \
857
 
  $(BUILDTOP)/include/profile.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h \
858
 
  $(SRCTOP)/include/k5-int-pkinit.h $(SRCTOP)/include/k5-int.h \
859
 
  $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-plugin.h \
860
 
  $(SRCTOP)/include/k5-thread.h $(SRCTOP)/include/krb5.h \
861
 
  $(SRCTOP)/include/krb5/locate_plugin.h $(SRCTOP)/include/krb5/preauth_plugin.h \
862
 
  $(SRCTOP)/include/port-sockets.h $(SRCTOP)/include/socket-utils.h \
863
 
  preauth.c
864
 
preauth2.so preauth2.po $(OUTPRE)preauth2.$(OBJEXT): \
865
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
866
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
867
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
868
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
869
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
870
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
871
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
872
 
  $(SRCTOP)/include/socket-utils.h int-proto.h preauth2.c
873
 
princ_comp.so princ_comp.po $(OUTPRE)princ_comp.$(OBJEXT): \
874
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
875
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
876
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
877
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
878
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
879
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
880
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
881
 
  $(SRCTOP)/include/socket-utils.h princ_comp.c
882
 
rd_cred.so rd_cred.po $(OUTPRE)rd_cred.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \
883
 
  $(BUILDTOP)/include/krb5/krb5.h $(BUILDTOP)/include/osconf.h \
884
 
  $(BUILDTOP)/include/profile.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h \
885
 
  $(SRCTOP)/include/k5-int-pkinit.h $(SRCTOP)/include/k5-int.h \
886
 
  $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-plugin.h \
887
 
  $(SRCTOP)/include/k5-thread.h $(SRCTOP)/include/krb5.h \
888
 
  $(SRCTOP)/include/krb5/locate_plugin.h $(SRCTOP)/include/krb5/preauth_plugin.h \
889
 
  $(SRCTOP)/include/port-sockets.h $(SRCTOP)/include/socket-utils.h \
890
 
  auth_con.h cleanup.h rd_cred.c
891
 
rd_error.so rd_error.po $(OUTPRE)rd_error.$(OBJEXT): \
892
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
893
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
894
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
895
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
896
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
897
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
898
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
899
 
  $(SRCTOP)/include/socket-utils.h rd_error.c
900
 
rd_priv.so rd_priv.po $(OUTPRE)rd_priv.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \
901
 
  $(BUILDTOP)/include/krb5/krb5.h $(BUILDTOP)/include/osconf.h \
902
 
  $(BUILDTOP)/include/profile.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h \
903
 
  $(SRCTOP)/include/k5-int-pkinit.h $(SRCTOP)/include/k5-int.h \
904
 
  $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-plugin.h \
905
 
  $(SRCTOP)/include/k5-thread.h $(SRCTOP)/include/krb5.h \
906
 
  $(SRCTOP)/include/krb5/locate_plugin.h $(SRCTOP)/include/krb5/preauth_plugin.h \
907
 
  $(SRCTOP)/include/port-sockets.h $(SRCTOP)/include/socket-utils.h \
908
 
  auth_con.h cleanup.h rd_priv.c
909
 
rd_rep.so rd_rep.po $(OUTPRE)rd_rep.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \
910
 
  $(BUILDTOP)/include/krb5/krb5.h $(BUILDTOP)/include/osconf.h \
911
 
  $(BUILDTOP)/include/profile.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h \
912
 
  $(SRCTOP)/include/k5-int-pkinit.h $(SRCTOP)/include/k5-int.h \
913
 
  $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-plugin.h \
914
 
  $(SRCTOP)/include/k5-thread.h $(SRCTOP)/include/krb5.h \
915
 
  $(SRCTOP)/include/krb5/locate_plugin.h $(SRCTOP)/include/krb5/preauth_plugin.h \
916
 
  $(SRCTOP)/include/port-sockets.h $(SRCTOP)/include/socket-utils.h \
917
 
  auth_con.h rd_rep.c
918
 
rd_req.so rd_req.po $(OUTPRE)rd_req.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \
919
 
  $(BUILDTOP)/include/krb5/krb5.h $(BUILDTOP)/include/osconf.h \
920
 
  $(BUILDTOP)/include/profile.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h \
921
 
  $(SRCTOP)/include/k5-int-pkinit.h $(SRCTOP)/include/k5-int.h \
922
 
  $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-plugin.h \
923
 
  $(SRCTOP)/include/k5-thread.h $(SRCTOP)/include/krb5.h \
924
 
  $(SRCTOP)/include/krb5/locate_plugin.h $(SRCTOP)/include/krb5/preauth_plugin.h \
925
 
  $(SRCTOP)/include/port-sockets.h $(SRCTOP)/include/socket-utils.h \
926
 
  auth_con.h rd_req.c
927
 
rd_req_dec.so rd_req_dec.po $(OUTPRE)rd_req_dec.$(OBJEXT): \
928
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
929
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
930
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
931
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
932
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
933
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
934
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
935
 
  $(SRCTOP)/include/socket-utils.h auth_con.h rd_req_dec.c
936
 
rd_safe.so rd_safe.po $(OUTPRE)rd_safe.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \
937
 
  $(BUILDTOP)/include/krb5/krb5.h $(BUILDTOP)/include/osconf.h \
938
 
  $(BUILDTOP)/include/profile.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h \
939
 
  $(SRCTOP)/include/k5-int-pkinit.h $(SRCTOP)/include/k5-int.h \
940
 
  $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-plugin.h \
941
 
  $(SRCTOP)/include/k5-thread.h $(SRCTOP)/include/krb5.h \
942
 
  $(SRCTOP)/include/krb5/locate_plugin.h $(SRCTOP)/include/krb5/preauth_plugin.h \
943
 
  $(SRCTOP)/include/port-sockets.h $(SRCTOP)/include/socket-utils.h \
944
 
  auth_con.h cleanup.h rd_safe.c
945
 
recvauth.so recvauth.po $(OUTPRE)recvauth.$(OBJEXT): \
946
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
947
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
948
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
949
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
950
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
951
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
952
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
953
 
  $(SRCTOP)/include/socket-utils.h auth_con.h recvauth.c
954
 
sendauth.so sendauth.po $(OUTPRE)sendauth.$(OBJEXT): \
955
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
956
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
957
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
958
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
959
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
960
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
961
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
962
 
  $(SRCTOP)/include/socket-utils.h auth_con.h sendauth.c
963
 
send_tgs.so send_tgs.po $(OUTPRE)send_tgs.$(OBJEXT): \
964
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
965
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
966
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
967
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
968
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
969
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
970
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
971
 
  $(SRCTOP)/include/socket-utils.h send_tgs.c
972
 
ser_actx.so ser_actx.po $(OUTPRE)ser_actx.$(OBJEXT): \
973
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
974
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
975
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
976
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
977
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
978
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
979
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
980
 
  $(SRCTOP)/include/socket-utils.h auth_con.h int-proto.h \
981
 
  ser_actx.c
982
 
ser_adata.so ser_adata.po $(OUTPRE)ser_adata.$(OBJEXT): \
983
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
984
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
985
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
986
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
987
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
988
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
989
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
990
 
  $(SRCTOP)/include/socket-utils.h int-proto.h ser_adata.c
991
 
ser_addr.so ser_addr.po $(OUTPRE)ser_addr.$(OBJEXT): \
992
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
993
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
994
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
995
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
996
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
997
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
998
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
999
 
  $(SRCTOP)/include/socket-utils.h int-proto.h ser_addr.c
1000
 
ser_auth.so ser_auth.po $(OUTPRE)ser_auth.$(OBJEXT): \
1001
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
1002
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
1003
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
1004
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
1005
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
1006
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
1007
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
1008
 
  $(SRCTOP)/include/socket-utils.h int-proto.h ser_auth.c
1009
 
ser_cksum.so ser_cksum.po $(OUTPRE)ser_cksum.$(OBJEXT): \
1010
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
1011
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
1012
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
1013
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
1014
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
1015
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
1016
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
1017
 
  $(SRCTOP)/include/socket-utils.h int-proto.h ser_cksum.c
1018
 
ser_ctx.so ser_ctx.po $(OUTPRE)ser_ctx.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \
1019
 
  $(BUILDTOP)/include/krb5/krb5.h $(BUILDTOP)/include/osconf.h \
1020
 
  $(BUILDTOP)/include/profile.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h \
1021
 
  $(SRCTOP)/include/k5-int-pkinit.h $(SRCTOP)/include/k5-int.h \
1022
 
  $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-plugin.h \
1023
 
  $(SRCTOP)/include/k5-thread.h $(SRCTOP)/include/krb5.h \
1024
 
  $(SRCTOP)/include/krb5/locate_plugin.h $(SRCTOP)/include/krb5/preauth_plugin.h \
1025
 
  $(SRCTOP)/include/port-sockets.h $(SRCTOP)/include/socket-utils.h \
1026
 
  ser_ctx.c
1027
 
ser_key.so ser_key.po $(OUTPRE)ser_key.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \
1028
 
  $(BUILDTOP)/include/krb5/krb5.h $(BUILDTOP)/include/osconf.h \
1029
 
  $(BUILDTOP)/include/profile.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h \
1030
 
  $(SRCTOP)/include/k5-int-pkinit.h $(SRCTOP)/include/k5-int.h \
1031
 
  $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-plugin.h \
1032
 
  $(SRCTOP)/include/k5-thread.h $(SRCTOP)/include/krb5.h \
1033
 
  $(SRCTOP)/include/krb5/locate_plugin.h $(SRCTOP)/include/krb5/preauth_plugin.h \
1034
 
  $(SRCTOP)/include/port-sockets.h $(SRCTOP)/include/socket-utils.h \
1035
 
  int-proto.h ser_key.c
1036
 
ser_princ.so ser_princ.po $(OUTPRE)ser_princ.$(OBJEXT): \
1037
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
1038
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
1039
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
1040
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
1041
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
1042
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
1043
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
1044
 
  $(SRCTOP)/include/socket-utils.h int-proto.h ser_princ.c
1045
 
serialize.so serialize.po $(OUTPRE)serialize.$(OBJEXT): \
1046
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
1047
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
1048
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
1049
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
1050
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
1051
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
1052
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
1053
 
  $(SRCTOP)/include/socket-utils.h serialize.c
1054
 
set_realm.so set_realm.po $(OUTPRE)set_realm.$(OBJEXT): \
1055
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
1056
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
1057
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
1058
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
1059
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
1060
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
1061
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
1062
 
  $(SRCTOP)/include/socket-utils.h set_realm.c
1063
 
srv_dec_tkt.so srv_dec_tkt.po $(OUTPRE)srv_dec_tkt.$(OBJEXT): \
1064
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
1065
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
1066
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
1067
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
1068
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
1069
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
1070
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
1071
 
  $(SRCTOP)/include/socket-utils.h srv_dec_tkt.c
1072
 
srv_rcache.so srv_rcache.po $(OUTPRE)srv_rcache.$(OBJEXT): \
1073
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
1074
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
1075
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
1076
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
1077
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
1078
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
1079
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
1080
 
  $(SRCTOP)/include/socket-utils.h srv_rcache.c
1081
 
str_conv.so str_conv.po $(OUTPRE)str_conv.$(OBJEXT): \
1082
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
1083
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
1084
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
1085
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
1086
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
1087
 
  $(SRCTOP)/include/kdb.h $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
1088
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
1089
 
  $(SRCTOP)/include/socket-utils.h str_conv.c
1090
 
tgtname.so tgtname.po $(OUTPRE)tgtname.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \
1091
 
  $(BUILDTOP)/include/krb5/krb5.h $(BUILDTOP)/include/osconf.h \
1092
 
  $(BUILDTOP)/include/profile.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h \
1093
 
  $(SRCTOP)/include/k5-int-pkinit.h $(SRCTOP)/include/k5-int.h \
1094
 
  $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-plugin.h \
1095
 
  $(SRCTOP)/include/k5-thread.h $(SRCTOP)/include/krb5.h \
1096
 
  $(SRCTOP)/include/krb5/locate_plugin.h $(SRCTOP)/include/krb5/preauth_plugin.h \
1097
 
  $(SRCTOP)/include/port-sockets.h $(SRCTOP)/include/socket-utils.h \
1098
 
  int-proto.h tgtname.c
1099
 
unparse.so unparse.po $(OUTPRE)unparse.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \
1100
 
  $(BUILDTOP)/include/krb5/krb5.h $(BUILDTOP)/include/osconf.h \
1101
 
  $(BUILDTOP)/include/profile.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h \
1102
 
  $(SRCTOP)/include/k5-int-pkinit.h $(SRCTOP)/include/k5-int.h \
1103
 
  $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-plugin.h \
1104
 
  $(SRCTOP)/include/k5-thread.h $(SRCTOP)/include/krb5.h \
1105
 
  $(SRCTOP)/include/krb5/locate_plugin.h $(SRCTOP)/include/krb5/preauth_plugin.h \
1106
 
  $(SRCTOP)/include/port-sockets.h $(SRCTOP)/include/socket-utils.h \
1107
 
  unparse.c
1108
 
v4lifetime.so v4lifetime.po $(OUTPRE)v4lifetime.$(OBJEXT): \
1109
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
1110
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
1111
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
1112
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
1113
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
1114
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
1115
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
1116
 
  $(SRCTOP)/include/socket-utils.h v4lifetime.c
1117
 
valid_times.so valid_times.po $(OUTPRE)valid_times.$(OBJEXT): \
1118
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
1119
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
1120
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
1121
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
1122
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
1123
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
1124
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
1125
 
  $(SRCTOP)/include/socket-utils.h valid_times.c
1126
 
vfy_increds.so vfy_increds.po $(OUTPRE)vfy_increds.$(OBJEXT): \
1127
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
1128
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
1129
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
1130
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
1131
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
1132
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
1133
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
1134
 
  $(SRCTOP)/include/socket-utils.h int-proto.h vfy_increds.c
1135
 
vic_opt.so vic_opt.po $(OUTPRE)vic_opt.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \
1136
 
  $(BUILDTOP)/include/krb5/krb5.h $(BUILDTOP)/include/osconf.h \
1137
 
  $(BUILDTOP)/include/profile.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h \
1138
 
  $(SRCTOP)/include/k5-int-pkinit.h $(SRCTOP)/include/k5-int.h \
1139
 
  $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-plugin.h \
1140
 
  $(SRCTOP)/include/k5-thread.h $(SRCTOP)/include/krb5.h \
1141
 
  $(SRCTOP)/include/krb5/locate_plugin.h $(SRCTOP)/include/krb5/preauth_plugin.h \
1142
 
  $(SRCTOP)/include/port-sockets.h $(SRCTOP)/include/socket-utils.h \
1143
 
  vic_opt.c
1144
 
walk_rtree.so walk_rtree.po $(OUTPRE)walk_rtree.$(OBJEXT): \
1145
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
1146
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
1147
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
1148
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
1149
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
1150
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
1151
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
1152
 
  $(SRCTOP)/include/socket-utils.h int-proto.h walk_rtree.c
1153
 
t_walk_rtree.so t_walk_rtree.po $(OUTPRE)t_walk_rtree.$(OBJEXT): \
1154
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
1155
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
1156
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
1157
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
1158
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
1159
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
1160
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
1161
 
  $(SRCTOP)/include/socket-utils.h t_walk_rtree.c
1162
 
t_kerb.so t_kerb.po $(OUTPRE)t_kerb.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \
1163
 
  $(KRB_ERR_H_DEP) $(BUILDTOP)/include/krb5/krb5.h $(BUILDTOP)/include/profile.h \
1164
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/kerberosIV/des.h \
1165
 
  $(SRCTOP)/include/kerberosIV/krb.h $(SRCTOP)/include/krb5.h \
1166
 
  t_kerb.c
1167
 
t_ser.so t_ser.po $(OUTPRE)t_ser.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \
1168
 
  $(BUILDTOP)/include/krb5/krb5.h $(BUILDTOP)/include/osconf.h \
1169
 
  $(BUILDTOP)/include/profile.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h \
1170
 
  $(SRCTOP)/include/k5-int-pkinit.h $(SRCTOP)/include/k5-int.h \
1171
 
  $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-plugin.h \
1172
 
  $(SRCTOP)/include/k5-thread.h $(SRCTOP)/include/krb5.h \
1173
 
  $(SRCTOP)/include/krb5/locate_plugin.h $(SRCTOP)/include/krb5/preauth_plugin.h \
1174
 
  $(SRCTOP)/include/port-sockets.h $(SRCTOP)/include/socket-utils.h \
1175
 
  auth_con.h t_ser.c
1176
 
t_deltat.so t_deltat.po $(OUTPRE)t_deltat.$(OBJEXT): \
1177
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
1178
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
1179
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
1180
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
1181
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
1182
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
1183
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
1184
 
  $(SRCTOP)/include/socket-utils.h t_deltat.c
1185
 
t_expand.so t_expand.po $(OUTPRE)t_expand.$(OBJEXT): \
1186
 
  $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
1187
 
  $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
1188
 
  $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-int-pkinit.h \
1189
 
  $(SRCTOP)/include/k5-int.h $(SRCTOP)/include/k5-platform.h \
1190
 
  $(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
1191
 
  $(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
1192
 
  $(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
1193
 
  $(SRCTOP)/include/socket-utils.h chk_trans.c t_expand.c