blob: bad2f74e55a769b3fd9f28fd7e6367c1ceb400c8 (
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
|
thisconfigdir=./..
myfulldir=lib/crypto/keyhash_provider
mydir=keyhash_provider
BUILDTOP=$(REL)$(U)$(S)$(U)$(S)$(U)
LOCALINCLUDES = -I$(srcdir)/../des -I$(srcdir)/../md4 \
-I$(srcdir)/../md5
##DOS##BUILDTOP = ..\..\..
##DOS##PREFIXDIR=keyhash_provider
##DOS##OBJFILE=..\$(OUTPRE)kh_pro.lst
##WIN16##LIBNAME=..\crypto.lib
PROG_LIBPATH=-L$(TOPLIBD)
PROG_RPATH=$(KRB5_LIBDIR)
RUN_SETUP = @KRB5_RUN_ENV@ KRB5_CONFIG=$(SRCTOP)/config-files/krb5.conf
STLIBOBJS= descbc.o k5_md4des.o k5_md5des.o
OBJS= $(OUTPRE)descbc.$(OBJEXT) $(OUTPRE)k5_md4des.$(OBJEXT) $(OUTPRE)k5_md5des.$(OBJEXT)
SRCS= $(srcdir)/descbc.c $(srcdir)/k5_md4des.c $(srcdir)/k5_md5des.c
##DOS##LIBOBJS = $(OBJS)
all-unix:: all-libobjs
includes:: depend
depend:: $(SRCS)
t_cksum4.o: $(srcdir)/t_cksum.c
$(CC) -DMD=4 $(ALL_CFLAGS) -o t_cksum4.o -c $(srcdir)/t_cksum.c
t_cksum5.o: $(srcdir)/t_cksum.c
$(CC) -DMD=5 $(ALL_CFLAGS) -o t_cksum5.o -c $(srcdir)/t_cksum.c
t_cksum4: t_cksum4.o $(CRYTPO_DEPLIB)
$(CC_LINK) -o t_cksum4 t_cksum4.o $(K5CRYPTO_LIB)
t_cksum5: t_cksum5.o $(CRYPTO_DEPLIB)
$(CC_LINK) -o t_cksum5 t_cksum5.o $(K5CRYPTO_LIB)
check-unix:: t_cksum4 t_cksum5
$(RUN_SETUP) $(C)t_cksum4 "this is a test"
$(RUN_SETUP) $(C)t_cksum5 "this is a test"
clean-unix::
$(RM) t_cksum4 t_cksum4.o
$(RM) t_cksum5 t_cksum5.o
clean-unix:: clean-libobjs
# +++ Dependency line eater +++
#
# Makefile dependencies follow. This must be the last section in
# the Makefile.in file
#
descbc.o: descbc.c $(SRCTOP)/include/k5-int.h $(BUILDTOP)/include/krb5/osconf.h \
$(BUILDTOP)/include/krb5/autoconf.h $(BUILDTOP)/include/krb5.h \
$(BUILDTOP)/include/profile.h $(BUILDTOP)/include/com_err.h \
$(SRCTOP)/include/krb5/kdb.h $(srcdir)/../des/des_int.h \
keyhash_provider.h
k5_md4des.o: k5_md4des.c $(SRCTOP)/include/k5-int.h \
$(BUILDTOP)/include/krb5/osconf.h $(BUILDTOP)/include/krb5/autoconf.h \
$(BUILDTOP)/include/krb5.h $(BUILDTOP)/include/profile.h \
$(BUILDTOP)/include/com_err.h $(SRCTOP)/include/krb5/kdb.h \
$(srcdir)/../des/des_int.h $(srcdir)/../md4/rsa-md4.h \
keyhash_provider.h
k5_md5des.o: k5_md5des.c $(SRCTOP)/include/k5-int.h \
$(BUILDTOP)/include/krb5/osconf.h $(BUILDTOP)/include/krb5/autoconf.h \
$(BUILDTOP)/include/krb5.h $(BUILDTOP)/include/profile.h \
$(BUILDTOP)/include/com_err.h $(SRCTOP)/include/krb5/kdb.h \
$(srcdir)/../des/des_int.h $(srcdir)/../md5/rsa-md5.h \
keyhash_provider.h
|