blob: 22c4643b9bc9fa21f01c504a441dccced195bf33 (
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
|
# $Source$
# $Author$
# $Id$
#
# Copyright 1990 by the Massachusetts Institute of Technology.
#
# For copying and distribution information, please see the file
# <krb5/copyright.h>.
#
SRCS= \
kdc5_err.c \
dispatch.c \
do_as_req.c \
do_tgs_req.c \
kdc_util.c \
main.c \
network.c \
policy.c \
extern.c
OBJS= \
kdc5_err.o \
dispatch.o \
do_as_req.o \
do_tgs_req.o \
kdc_util.o \
main.o \
network.o \
policy.o \
extern.o
ErrorTableObjectRule()
all:: krb5kdc
kdc5_err.c: kdc5_err.et
NormalProgramTarget(krb5kdc,$(OBJS),$(DEPKDBLIB) $(DEPKLIB),$(KDBLIB) $(KLIB),)
clean::
$(RM) kdc5_err.h kdc5_err.c
|