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

ErrorTableObjectRule()

all::	krb5kdc

depend:: kdc5_err.c

kdc5_err.c: kdc5_err.et

NormalProgramTarget(krb5kdc,$(OBJS),$(DEPKDBLIB) $(DEPKLIB), \
	$(KDBLIB) $(KLIB) $(KRB4LIB),)

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

DependTarget()