=================================================================== RCS file: /home/cvs/OpenXM/src/gnuplot-diff/Attic/Makefile,v retrieving revision 1.7 retrieving revision 1.9 diff -u -p -r1.7 -r1.9 --- OpenXM/src/gnuplot-diff/Attic/Makefile 1999/11/22 08:02:10 1.7 +++ OpenXM/src/gnuplot-diff/Attic/Makefile 1999/11/27 20:30:03 1.9 @@ -1,6 +1,7 @@ -# $OpenXM: OpenXM/src/gnuplot-diff/Makefile,v 1.6 1999/11/19 16:39:29 maekawa Exp $ +# $OpenXM: OpenXM/src/gnuplot-diff/Makefile,v 1.8 1999/11/22 08:38:25 maekawa Exp $ -GNUPLOT = ../gnuplot +GNUPLOT = ../../../OpenXM_contrib/gnuplot +PATCHDIR = ../../OpenXM/src/gnuplot-diff CURDIR = ../gnuplot-diff BINDIR = ../../bin @@ -11,8 +12,8 @@ all : patch @touch $(CURDIR)/.make_done install: all - cp $(GNUPLOT)/gnuplot $(BINDIR)/gnuplot4ox - cp $(GNUPLOT)/gnuplot_x11 $(BINDIR)/gnuplot_x11 + install -c -s $(GNUPLOT)/gnuplot $(BINDIR)/gnuplot4ox + install -c -s $(GNUPLOT)/gnuplot_x11 $(BINDIR)/gnuplot_x11 clean : patch-clean @if [ -f $(CURDIR).make_done ]; then \ @@ -23,12 +24,12 @@ clean : patch-clean patch: @if [ ! -f $(CURDIR)/.patch_done ]; then \ - (cd $(GNUPLOT) ; patch < $(CURDIR)/plot.c.diff) \ + (cd $(GNUPLOT) ; patch < $(PATCHDIR)/plot.c.diff) \ fi @touch $(CURDIR)/.patch_done patch-clean: @if [ -f $(CURDIR)/.patch_done ]; then \ - (cd $(GNUPLOT) ; patch -R < $(CURDIR)/plot.c.diff) \ + (cd $(GNUPLOT) ; patch -R < $(PATCHDIR)/plot.c.diff) \ fi @rm -f $(CURDIR)/.patch_done