From: erg Date: Fri, 28 Jan 2005 22:41:16 +0000 (+0000) Subject: Fix old makefile to handle redoing the soft links correctly X-Git-Tag: LAST_LIBGRAPH~32^2~7975 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7a3090cf9e05f690683291beece4494fdd0d77c8;p=graphviz Fix old makefile to handle redoing the soft links correctly --- diff --git a/cmd/dot/Makefile.old b/cmd/dot/Makefile.old index e5920088d..a0547c2ed 100644 --- a/cmd/dot/Makefile.old +++ b/cmd/dot/Makefile.old @@ -66,10 +66,10 @@ $(LIBDOTNEATO) : dotneato.o install: all $(MKPATH) $(BINDIR) $(INSTALL) dot $(BINDIR) - $(LN) -s $(BINDIR)/dot $(BINDIR)/neato - $(LN) -s $(BINDIR)/dot $(BINDIR)/fdp - $(LN) -s $(BINDIR)/dot $(BINDIR)/circo - $(LN) -s $(BINDIR)/dot $(BINDIR)/twopi + $(RM) $(BINDIR)/neato; $(LN) -s $(BINDIR)/dot $(BINDIR)/neato + $(RM) $(BINDIR)/fdp; $(LN) -s $(BINDIR)/dot $(BINDIR)/fdp + $(RM) $(BINDIR)/circo; $(LN) -s $(BINDIR)/dot $(BINDIR)/circo + $(RM) $(BINDIR)/twopi; $(LN) -s $(BINDIR)/dot $(BINDIR)/twopi $(MKPATH) $(INCDIR) $(INSTALL) dotneato.h $(INCDIR) $(MKPATH) $(LIBDIR)