aboutsummaryrefslogtreecommitdiff
path: root/src/lib/Makefile.in
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2016-07-26 13:32:08 -0400
committerGreg Hudson <ghudson@mit.edu>2016-07-28 11:53:44 -0400
commit035a1c2b3d97479692edac9844eaed385d00cd4f (patch)
treecca981d1be07e7cc20bc2c460763e2769ec071ef /src/lib/Makefile.in
parent5392327b479fd1b964fd72b3b3a0b5b3e04df3a6 (diff)
downloadkrb5-035a1c2b3d97479692edac9844eaed385d00cd4f.zip
krb5-035a1c2b3d97479692edac9844eaed385d00cd4f.tar.gz
krb5-035a1c2b3d97479692edac9844eaed385d00cd4f.tar.bz2
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.
Diffstat (limited to 'src/lib/Makefile.in')
-rw-r--r--src/lib/Makefile.in6
1 files changed, 3 insertions, 3 deletions
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