blob: 59a1d2082877e2b7779d75d8046031a07f1e52d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
# $Source$
# $Author$
# $Id$
#
# Copyright 1990,1991 by the Massachusetts Institute of Technology.
# All Rights Reserved.
#
# Export of this software from the United States of America may
# require a specific license from the United States Government.
# It is the responsibility of any person or organization contemplating
# export to obtain such a license before exporting.
#
# WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
# distribute this software and its documentation for any purpose and
# without fee is hereby granted, provided that the above copyright
# notice appear in all copies and that both that copyright notice and
# this permission notice appear in supporting documentation, and that
# the name of M.I.T. not be used in advertising or publicity pertaining
# to distribution of the software without specific, written prior
# permission. M.I.T. makes no representations about the suitability of
# this software for any purpose. It is provided "as is" without express
# or implied warranty.
#
#
NormalLibraryObjectRule()
OBJS= \
f_addr.o \
f_address.o \
f_ap_rep.o \
f_ap_req.o \
f_arep_enc.o \
f_authdata.o \
f_authent.o \
f_cksum.o \
f_creds.o \
f_cred_cnt.o \
f_enc_kdc.o \
f_enc_tkt.o \
f_error.o \
f_kdc_rep.o \
f_kdc_req.o \
f_keyblock.o \
f_last_req.o \
f_padata.o \
f_princ.o \
f_priv.o \
f_priv_enc.o \
f_safe.o \
f_ticket.o \
f_tickets.o \
f_tgt_cred.o \
f_tkt_auth.o \
f_pwd_data.o \
f_pwd_seq.o \
f_cred.o \
f_cred_enc.o
SRCS= \
$(SRCDIR)f_addr.c \
$(SRCDIR)f_address.c \
$(SRCDIR)f_arep_enc.c \
$(SRCDIR)f_ap_rep.c \
$(SRCDIR)f_ap_req.c \
$(SRCDIR)f_authdata.c \
$(SRCDIR)f_authent.c \
$(SRCDIR)f_cksum.c \
$(SRCDIR)f_creds.c \
$(SRCDIR)f_cred_cnt.c \
$(SRCDIR)f_enc_kdc.c \
$(SRCDIR)f_enc_tkt.c \
$(SRCDIR)f_error.c \
$(SRCDIR)f_kdc_rep.c \
$(SRCDIR)f_kdc_req.c \
$(SRCDIR)f_keyblock.c \
$(SRCDIR)f_last_req.c \
$(SRCDIR)f_padata.c \
$(SRCDIR)f_princ.c \
$(SRCDIR)f_priv.c \
$(SRCDIR)f_priv_enc.c \
$(SRCDIR)f_safe.c \
$(SRCDIR)f_ticket.c \
$(SRCDIR)f_tickets.c \
$(SRCDIR)f_tgt_cred.c \
$(SRCDIR)f_tkt_auth.c \
$(SRCDIR)f_pwd_data.c \
$(SRCDIR)f_pwd_seq.c \
$(SRCDIR)f_cred.c \
$(SRCDIR)f_cred_enc.c
SubdirLibraryRule($(OBJS))
DependTarget()
|