[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / OpenXM / src / gnuplot-diff

Diff for /OpenXM/src/gnuplot-diff/Attic/Makefile between version 1.7 and 1.9

version 1.7, 1999/11/22 08:02:10 version 1.9, 1999/11/27 20:30:03
Line 1 
Line 1 
 # $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  CURDIR = ../gnuplot-diff
 BINDIR = ../../bin  BINDIR = ../../bin
   
Line 11  all : patch
Line 12  all : patch
         @touch $(CURDIR)/.make_done          @touch $(CURDIR)/.make_done
   
 install: all  install: all
         cp $(GNUPLOT)/gnuplot $(BINDIR)/gnuplot4ox          install -c -s $(GNUPLOT)/gnuplot $(BINDIR)/gnuplot4ox
         cp $(GNUPLOT)/gnuplot_x11 $(BINDIR)/gnuplot_x11          install -c -s $(GNUPLOT)/gnuplot_x11 $(BINDIR)/gnuplot_x11
   
 clean : patch-clean  clean : patch-clean
         @if [ -f $(CURDIR).make_done ]; then \          @if [ -f $(CURDIR).make_done ]; then \
Line 23  clean : patch-clean
Line 24  clean : patch-clean
   
 patch:  patch:
         @if [ ! -f $(CURDIR)/.patch_done ]; then \          @if [ ! -f $(CURDIR)/.patch_done ]; then \
                 (cd $(GNUPLOT) ; patch < $(CURDIR)/plot.c.diff) \                  (cd $(GNUPLOT) ; patch < $(PATCHDIR)/plot.c.diff) \
         fi          fi
         @touch $(CURDIR)/.patch_done          @touch $(CURDIR)/.patch_done
   
 patch-clean:  patch-clean:
         @if [ -f $(CURDIR)/.patch_done ]; then \          @if [ -f $(CURDIR)/.patch_done ]; then \
                 (cd $(GNUPLOT) ; patch -R < $(CURDIR)/plot.c.diff) \                  (cd $(GNUPLOT) ; patch -R < $(PATCHDIR)/plot.c.diff) \
         fi          fi
         @rm -f $(CURDIR)/.patch_done          @rm -f $(CURDIR)/.patch_done

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.9

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>