summaryrefslogtreecommitdiffstats
path: root/src/lib/kdb
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2001-10-11 03:37:44 +0000
committerKen Raeburn <raeburn@mit.edu>2001-10-11 03:37:44 +0000
commit1c20d1777625c032b57610e2c5ddfbf614d858d5 (patch)
tree7cba7ce8c9d089653aa15652dad3e8b727afad75 /src/lib/kdb
parentf389044342221cd84f4e4ef4b0908077dd1f98a6 (diff)
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/kdb')
-rw-r--r--src/lib/kdb/Makefile.in49
1 files changed, 26 insertions, 23 deletions
diff --git a/src/lib/kdb/Makefile.in b/src/lib/kdb/Makefile.in
index bc2b1af8d..26f77c5d0 100644
--- a/src/lib/kdb/Makefile.in
+++ b/src/lib/kdb/Makefile.in
@@ -67,44 +67,47 @@ clean::
# Makefile dependencies follow. This must be the last section in
# the Makefile.in file
#
-keytab.o: keytab.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 $(SRCTOP)/include/krb5/kdb_kt.h
-encrypt_key.o: encrypt_key.c $(SRCTOP)/include/k5-int.h \
+$(OUTPRE)keytab.$(OBJEXT): keytab.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 \
+ $(SRCTOP)/include/krb5/kdb_kt.h
+$(OUTPRE)encrypt_key.$(OBJEXT): encrypt_key.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
+$(OUTPRE)decrypt_key.$(OBJEXT): decrypt_key.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
-decrypt_key.o: decrypt_key.c $(SRCTOP)/include/k5-int.h \
+$(OUTPRE)kdb_cpw.$(OBJEXT): kdb_cpw.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 \
+ $(SRCTOP)/include/krb5/adm.h
+$(OUTPRE)kdb_db2.$(OBJEXT): kdb_db2.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/db.h $(BUILDTOP)/include/db-config.h \
+ kdb_compat.h kdb_db2.h
+$(OUTPRE)kdb_xdr.$(OBJEXT): kdb_xdr.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
-kdb_cpw.o: kdb_cpw.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 $(SRCTOP)/include/krb5/adm.h
-kdb_db2.o: kdb_db2.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/db.h \
- $(BUILDTOP)/include/db-config.h kdb_compat.h kdb_db2.h
-kdb_xdr.o: kdb_xdr.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
-verify_mky.o: verify_mky.c $(SRCTOP)/include/k5-int.h \
+$(OUTPRE)verify_mky.$(OBJEXT): verify_mky.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
-fetch_mkey.o: fetch_mkey.c $(SRCTOP)/include/k5-int.h \
+$(OUTPRE)fetch_mkey.$(OBJEXT): fetch_mkey.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
-setup_mkey.o: setup_mkey.c $(SRCTOP)/include/k5-int.h \
+$(OUTPRE)setup_mkey.$(OBJEXT): setup_mkey.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
-store_mkey.o: store_mkey.c $(SRCTOP)/include/k5-int.h \
+$(OUTPRE)store_mkey.$(OBJEXT): store_mkey.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