diff options
author | Ken Raeburn <raeburn@mit.edu> | 2001-10-11 03:37:44 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@mit.edu> | 2001-10-11 03:37:44 +0000 |
commit | 1c20d1777625c032b57610e2c5ddfbf614d858d5 (patch) | |
tree | 7cba7ce8c9d089653aa15652dad3e8b727afad75 /src/lib/crypto/dk | |
parent | f389044342221cd84f4e4ef4b0908077dd1f98a6 (diff) | |
download | krb5-1c20d1777625c032b57610e2c5ddfbf614d858d5.tar.gz krb5-1c20d1777625c032b57610e2c5ddfbf614d858d5.tar.xz krb5-1c20d1777625c032b57610e2c5ddfbf614d858d5.zip |
Update automatic dependencies to work on Windows by using $(OUTPRE) and
$(OBJEXT). Change a couple of UNIX rules to not trigger incorrectly on
Windows. Rebuild dependencies.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13801 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/crypto/dk')
-rw-r--r-- | src/lib/crypto/dk/Makefile.in | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/src/lib/crypto/dk/Makefile.in b/src/lib/crypto/dk/Makefile.in index 2b2b967330..e97d8a8122 100644 --- a/src/lib/crypto/dk/Makefile.in +++ b/src/lib/crypto/dk/Makefile.in @@ -49,27 +49,29 @@ clean-unix:: clean-libobjs # Makefile dependencies follow. This must be the last section in # the Makefile.in file # -checksum.o: checksum.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)/../etypes.h \ - dk.h -dk_decrypt.o: dk_decrypt.c $(SRCTOP)/include/k5-int.h \ +$(OUTPRE)checksum.$(OBJEXT): checksum.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)/../etypes.h dk.h +$(OUTPRE)dk_decrypt.$(OBJEXT): dk_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 \ dk.h -dk_encrypt.o: dk_encrypt.c $(SRCTOP)/include/k5-int.h \ +$(OUTPRE)dk_encrypt.$(OBJEXT): dk_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 \ dk.h -derive.o: derive.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 dk.h $(srcdir)/../etypes.h -stringtokey.o: stringtokey.c dk.h $(SRCTOP)/include/k5-int.h \ +$(OUTPRE)derive.$(OBJEXT): derive.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 + $(BUILDTOP)/include/com_err.h $(SRCTOP)/include/krb5/kdb.h \ + dk.h $(srcdir)/../etypes.h +$(OUTPRE)stringtokey.$(OBJEXT): stringtokey.c dk.h \ + $(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 |