aboutsummaryrefslogtreecommitdiff
path: root/src/windows/cns/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/windows/cns/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/windows/cns/Makefile.in')
-rw-r--r--src/windows/cns/Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/windows/cns/Makefile.in b/src/windows/cns/Makefile.in
index bc884a3..9742122 100644
--- a/src/windows/cns/Makefile.in
+++ b/src/windows/cns/Makefile.in
@@ -50,18 +50,18 @@ LIBS = $(KLIB) $(CLIB) $(WLIB) ../lib/$(OUTPRE)libwin.lib
SYSLIBS = kernel32.lib ws2_32.lib user32.lib gdi32.lib advapi32.lib
LFLAGS = /nologo $(LOPTS)
-all:: Makefile $(OUTPRE)$(NAME).exe
+all: Makefile $(OUTPRE)$(NAME).exe
$(OUTPRE)$(NAME).exe: $(NAME).def $(OBJS) $(XOBJS) $(LIBS)
$(LINK) $(LFLAGS) /map:$*.map /out:$@ $(OBJS) $(XOBJS) \
$(LIBS) $(SYSLIBS) $(SCLIB)
$(_VC_MANIFEST_EMBED_EXE)
-install::
+install:
$(CP) $(OUTPRE)$(NAME).exe $(DESTDIR)
$(CP) krb5.hlp $(DESTDIR)
-clean::
+clean:
$(RM) $(OUTPRE)*.exe
$(RM) $(OUTPRE)*.res
$(RM) $(OUTPRE)*.map