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

Diff for /OpenXM/src/gnuplot/Makefile between version 1.1 and 1.2

version 1.1, 2000/01/07 18:03:25 version 1.2, 2000/01/08 16:36:24
Line 1 
Line 1 
 # $OpenXM$  # $OpenXM: OpenXM/src/gnuplot/Makefile,v 1.1 2000/01/07 18:03:25 maekawa Exp $
   
 GNUPLOT = ../../../OpenXM_contrib/gnuplot  GNUPLOT = ../../../OpenXM_contrib/gnuplot
 CURDIR = ../../OpenXM/src/gnuplot  CURDIR = ../../OpenXM/src/gnuplot
 BINDIR = ../../bin  BINDIR = ../../bin
   
 all: patch  all: configure
         @if [ ! -f ./.make_done ]; then \          @if [ ! -f ./.make_done ]; then \
                 (cd $(GNUPLOT) ; ./configure --with-x ; make) \                  (cd $(GNUPLOT) ; make all) \
         fi          fi
         @touch ./.make_done          @touch ./.make_done
   
Line 18  clean: patch-clean
Line 18  clean: patch-clean
         @if [ -f ./.make_done ]; then \          @if [ -f ./.make_done ]; then \
                 (cd $(GNUPLOT) ; make distclean) \                  (cd $(GNUPLOT) ; make distclean) \
         fi          fi
           @rm -f ./.make_done ./.configure_done
   
   distclean:
         rm -f $(BINDIR)/gnuplot4ox $(BINDIR)/gnuplot_x11          rm -f $(BINDIR)/gnuplot4ox $(BINDIR)/gnuplot_x11
         @rm -f ./.make_done  
   configure: patch
           @if [ ! -f ./.configure_done ]; then \
                   (cd $(GNUPLOT) ; ./configure --with-x) \
           fi
           @touch ./.configure_done
   
 patch:  patch:
         @if [ ! -f ./.patch_done ]; then \          @if [ ! -f ./.patch_done ]; then \

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

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