aboutsummaryrefslogtreecommitdiff
path: root/src/kadmin/ktutil
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/kadmin/ktutil
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/kadmin/ktutil')
-rw-r--r--src/kadmin/ktutil/Makefile.in13
1 files changed, 5 insertions, 8 deletions
diff --git a/src/kadmin/ktutil/Makefile.in b/src/kadmin/ktutil/Makefile.in
index e92f84f..f8f9b41 100644
--- a/src/kadmin/ktutil/Makefile.in
+++ b/src/kadmin/ktutil/Makefile.in
@@ -9,12 +9,12 @@ SRCS= $(srcdir)/ktutil.c \
ktutil_ct.c \
$(srcdir)/ktutil_funcs.c
-all:: ktutil
+all: ktutil
ktutil: ktutil.o $(OBJS) $(SS_DEPLIB) $(KRB5_BASE_DEPLIBS)
$(CC_LINK) -o ktutil $(OBJS) $(SS_LIB) $(KRB5_BASE_LIBS)
-install::
+install:
$(INSTALL_PROGRAM) ktutil ${DESTDIR}$(CLIENT_BINDIR)/ktutil
generate-files-mac: ktutil_ct.c
@@ -24,10 +24,7 @@ ktutil_ct.c: ktutil_ct.ct
ktutil_ct.o: ktutil_ct.c
-clean::
- $(RM) ktutil_ct.c
+clean:
+ $(RM) ktutil_ct.c ktutil
-depend:: ktutil_ct.c
-
-clean::
- $(RM) ktutil
+depend: ktutil_ct.c