blob: 2283cfeb9d392ab2eaa63f09cd070451f324fc52 (
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
|
thisconfigdir=./..
myfulldir=lib/crypto/old
mydir=old
BUILDTOP=$(REL)$(U)$(S)$(U)$(S)$(U)
LOCALINCLUDES = -I$(srcdir)/../des
##DOS##BUILDTOP = ..\..\..
##DOS##PREFIXDIR=old
##DOS##OBJFILE=..\$(OUTPRE)old.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= old_decrypt.o old_encrypt.o des_stringtokey.o
OBJS= $(OUTPRE)des_stringtokey.$(OBJEXT) $(OUTPRE)old_decrypt.$(OBJEXT) $(OUTPRE)old_encrypt.$(OBJEXT)
SRCS= $(srcdir)/des_stringtokey.c $(srcdir)/old_decrypt.c \
$(srcdir)/old_encrypt.c
##DOS##LIBOBJS = $(OBJS)
all-unix:: all-libobjs
includes:: depend
depend:: $(SRCS)
clean-unix:: clean-libobjs
# +++ Dependency line eater +++
#
# Makefile dependencies follow. This must be the last section in
# the Makefile.in file
#
des_stringtokey.o: des_stringtokey.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 \
old.h
old_decrypt.o: old_decrypt.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 \
old.h
old_encrypt.o: old_encrypt.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 \
old.h
|