summaryrefslogtreecommitdiffstats
path: root/src/kdc/Imakefile
blob: e113270fe6fc45595cad2ede79c016bf244028b9 (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
#	$Source$
#	$Author$
#	$Id$
#
#  Copyright 1990 by the Massachusetts Institute of Technology.
# 
#  For copying and distribution information, please see the file
#  <krb5/copyright.h>.
# 

#ifdef Krb4KDCCompat
KRB4DEF = -DKRB4
K4LIB=$(KRB4LIB)
#else
KRB4DEF =
K4LIB=
#endif
DEFINES = -DBACKWARD_COMPAT $(KRB4DEF)

INCLUDES = $(KRB4INCLUDES)
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 \
	replay.c \
	kerberos_v4.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 \
	replay.o \
	kerberos_v4.o

ErrorTableObjectRule()

all::	krb5kdc

depend:: kdc5_err.c

kdc5_err.c: kdc5_err.et

NormalProgramTarget(krb5kdc,$(OBJS),$(KDBDEPLIB) $(DEPKLIB), \
	$(KDBLIB) $(KLIB) $(K4LIB),)

clean::
	$(RM) kdc5_err.h kdc5_err.c

DependTarget()