From 035a1c2b3d97479692edac9844eaed385d00cd4f Mon Sep 17 00:00:00 2001 From: Greg Hudson Date: Tue, 26 Jul 2016 13:32:08 -0400 Subject: Use single-colon rules in makefiles Double-colon rules allow the flexibility to specify commands in multiple places, but they also make the order of commands and dependencies dependent on the order of declarations in the Makefile. Convert all of our double-colon rules to single-colon rules, with the exception of "clean-unix" and "clean-windows" which have commands defined in both post.in and in numerous Makefile.in files. --- src/lib/Makefile.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/lib/Makefile.in') diff --git a/src/lib/Makefile.in b/src/lib/Makefile.in index 8fbc50a..8a119ab 100644 --- a/src/lib/Makefile.in +++ b/src/lib/Makefile.in @@ -3,7 +3,7 @@ SUBDIRS=crypto krb5 gssapi rpc kdb kadm5 apputils krad WINSUBDIRS=crypto krb5 gssapi BUILDTOP=$(REL).. -all-unix:: +all-unix: CLEANLIBS = libkrb5.a libkdb5.a libcrypto.a libgssapi_krb5.a libkadm.a \ libcom_err.a libpty.a ibss.a libgssapi.a libapputils.a libkrb5.so \ @@ -145,5 +145,5 @@ clean-windows:: ##WIN32##gssapi.lib: $(GLIB) ##WIN32##profile.lib: $(PLIB) -##WIN32##all-windows:: all-recurse lib-windows -##WIN32##lib-windows:: krb5.lib gssapi.lib profile.lib +##WIN32##all-windows: all-recurse lib-windows +##WIN32##lib-windows: krb5.lib gssapi.lib profile.lib -- cgit v1.1