svn rev #22486: trunk/src/ appl/libpty/ include/ kadmin/dbutil/ kadmin/passwd/ ...

ghudson@MIT.EDU ghudson at MIT.EDU
Mon Aug 3 16:27:04 EDT 2009


http://src.mit.edu/fisheye/changelog/krb5/?cs=22486
Commit By: ghudson
Log Message:
Get "make depend" to work in an unbuilt source tree, since bad deps
files can make it difficult to build the tree.  To do this, make the
depends target depend on generated header files and on header file
copies or links into the main include directory.



Changed Files:
U   trunk/src/appl/libpty/Makefile.in
U   trunk/src/include/Makefile.in
U   trunk/src/kadmin/dbutil/Makefile.in
U   trunk/src/kadmin/passwd/Makefile.in
U   trunk/src/kdc/Makefile.in
U   trunk/src/lib/gssapi/generic/Makefile.in
U   trunk/src/lib/gssapi/krb5/Makefile.in
U   trunk/src/lib/kadm5/Makefile.in
U   trunk/src/lib/kadm5/clnt/Makefile.in
U   trunk/src/lib/kadm5/srv/Makefile.in
U   trunk/src/lib/kdb/Makefile.in
U   trunk/src/util/et/Makefile.in
Modified: trunk/src/appl/libpty/Makefile.in
===================================================================
--- trunk/src/appl/libpty/Makefile.in	2009-08-03 19:59:00 UTC (rev 22485)
+++ trunk/src/appl/libpty/Makefile.in	2009-08-03 20:27:03 UTC (rev 22486)
@@ -65,7 +65,7 @@
 	$(RM) libpty.a $(BUILDTOP)/include/libpty.h pty_err.c pty_err.h
 clean-unix:: clean-liblinks clean-libs clean-libobjs
 
-depend::  pty_err.h
+depend:: includes pty_err.h
 
 #install:: libpty.h
 #	$(INSTALL_DATA) $(srcdir)/libpty.h  $(DESTDIR)$(KRB5_INCDIR)/libpty.h

Modified: trunk/src/include/Makefile.in
===================================================================
--- trunk/src/include/Makefile.in	2009-08-03 19:59:00 UTC (rev 22485)
+++ trunk/src/include/Makefile.in	2009-08-03 20:27:03 UTC (rev 22486)
@@ -137,3 +137,5 @@
 	$(INSTALL_DATA) $(srcdir)/krb5/locate_plugin.h $(DESTDIR)$(KRB5_INCDIR)$(S)krb5$(S)locate_plugin.h
 	$(INSTALL_DATA) profile.h $(DESTDIR)$(KRB5_INCDIR)$(S)profile.h
 	$(INSTALL_DATA) $(srcdir)/gssapi.h $(DESTDIR)$(KRB5_INCDIR)$(S)gssapi.h
+
+depend:: krb5/krb5.h $(BUILT_HEADERS)

Modified: trunk/src/kadmin/dbutil/Makefile.in
===================================================================
--- trunk/src/kadmin/dbutil/Makefile.in	2009-08-03 19:59:00 UTC (rev 22485)
+++ trunk/src/kadmin/dbutil/Makefile.in	2009-08-03 20:27:03 UTC (rev 22486)
@@ -34,3 +34,4 @@
 clean::
 	$(RM) $(PROG) $(OBJS) import_err.c import_err.h
 
+depend:: import_err.h

Modified: trunk/src/kadmin/passwd/Makefile.in
===================================================================
--- trunk/src/kadmin/passwd/Makefile.in	2009-08-03 19:59:00 UTC (rev 22485)
+++ trunk/src/kadmin/passwd/Makefile.in	2009-08-03 20:27:03 UTC (rev 22486)
@@ -24,3 +24,5 @@
 
 clean::
 	$(RM) kpasswd_strings.c kpasswd_strings.h $(PROG) $(OBJS)
+
+depend:: kpasswd_strings.h

Modified: trunk/src/kdc/Makefile.in
===================================================================
--- trunk/src/kdc/Makefile.in	2009-08-03 19:59:00 UTC (rev 22485)
+++ trunk/src/kdc/Makefile.in	2009-08-03 20:27:03 UTC (rev 22486)
@@ -54,7 +54,7 @@
 	policy.o \
 	extern.o
 
-depend:: kdc5_err.c
+depend:: kdc5_err.c kdc5_err.h
 
 kdc5_err.c: kdc5_err.et
 

Modified: trunk/src/lib/gssapi/generic/Makefile.in
===================================================================
--- trunk/src/lib/gssapi/generic/Makefile.in	2009-08-03 19:59:00 UTC (rev 22485)
+++ trunk/src/lib/gssapi/generic/Makefile.in	2009-08-03 20:27:03 UTC (rev 22486)
@@ -167,7 +167,7 @@
 		$(DESTDIR)$(KRB5_INCDIR)/gssapi/$$f ; \
 	done
 
-depend:: $(ETSRCS)
+depend:: $(ETSRCS) $(ETHDRS) $(HDRS) errmap.h maptest.h
 
 @libobj_frag@
 

Modified: trunk/src/lib/gssapi/krb5/Makefile.in
===================================================================
--- trunk/src/lib/gssapi/krb5/Makefile.in	2009-08-03 19:59:00 UTC (rev 22485)
+++ trunk/src/lib/gssapi/krb5/Makefile.in	2009-08-03 20:27:03 UTC (rev 22486)
@@ -263,7 +263,7 @@
 		$(DESTDIR)$(KRB5_INCDIR)/gssapi/$$f ; \
 	done
 
-depend:: $(ETSRCS)
+depend:: $(ETSRCS) $(ETHDRS) $(GSSAPI_KRB5_HDR) error_map.h
 
 includes::  gssapi_krb5.h
 

Modified: trunk/src/lib/kadm5/Makefile.in
===================================================================
--- trunk/src/lib/kadm5/Makefile.in	2009-08-03 19:59:00 UTC (rev 22485)
+++ trunk/src/lib/kadm5/Makefile.in	2009-08-03 20:27:03 UTC (rev 22486)
@@ -103,5 +103,7 @@
 	$(INSTALL_DATA) chpass_util_strings.h $(DESTDIR)$(KRB5_INCDIR)$(S)kadm5$(S)chpass_util_strings.h
 	$(INSTALL_DATA) kadm_err.h $(DESTDIR)$(KRB5_INCDIR)$(S)kadm5$(S)kadm_err.h
 
+depend:: includes
+
 @libobj_frag@
 

Modified: trunk/src/lib/kadm5/clnt/Makefile.in
===================================================================
--- trunk/src/lib/kadm5/clnt/Makefile.in	2009-08-03 19:59:00 UTC (rev 22485)
+++ trunk/src/lib/kadm5/clnt/Makefile.in	2009-08-03 20:27:03 UTC (rev 22486)
@@ -72,6 +72,8 @@
 
 install:: install-libs
 
+depend:: includes
+
 @lib_frag@
 @libobj_frag@
 

Modified: trunk/src/lib/kadm5/srv/Makefile.in
===================================================================
--- trunk/src/lib/kadm5/srv/Makefile.in	2009-08-03 19:59:00 UTC (rev 22485)
+++ trunk/src/lib/kadm5/srv/Makefile.in	2009-08-03 20:27:03 UTC (rev 22486)
@@ -89,6 +89,8 @@
 
 install:: install-libs
 
+depend:: includes
+
 @lib_frag@
 @libobj_frag@
 

Modified: trunk/src/lib/kdb/Makefile.in
===================================================================
--- trunk/src/lib/kdb/Makefile.in	2009-08-03 19:59:00 UTC (rev 22485)
+++ trunk/src/lib/kdb/Makefile.in	2009-08-03 20:27:03 UTC (rev 22486)
@@ -61,6 +61,8 @@
 
 generate-files-mac: darwin.exports
 
+depend:: adb_err.h
+
 @lib_frag@
 @libobj_frag@
 

Modified: trunk/src/util/et/Makefile.in
===================================================================
--- trunk/src/util/et/Makefile.in	2009-08-03 19:59:00 UTC (rev 22485)
+++ trunk/src/util/et/Makefile.in	2009-08-03 20:27:03 UTC (rev 22486)
@@ -242,7 +242,7 @@
 	etags et_name.c error_message.c compile_et.c \
 		error_table.c init_et.c
 
-depend::  et_lex.lex.c
+depend::  et_lex.lex.c includes compile_et
 
 
 @lib_frag@




More information about the cvs-krb5 mailing list