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

File: [local] / OpenXM / src / gnuplot-diff / Attic / Makefile (download)

Revision 1.6, Fri Nov 19 16:39:29 1999 UTC (24 years, 6 months ago) by maekawa
Branch: MAIN
Changes since 1.5: +18 -8 lines

o check to be applied patch or not.

HEADS UP!

Three steps to make gnuplot with OX patch:

1. 'patch' target
   - apply patch & touch .patch_done if not exist .patch_done
   If applied patch, do nothing.

2. 'all' target
   - change directory & configure & make

3. 'install' target
   - copy binaries to the appropriate position

Two steps to clean gnuplot with OX patch:

1. 'patch-clean' target
   - apply reverse patch & rm .patch_done if exists .patch_done
   If applied reverse patch, do nothing.

2. 'clean' target
   - change directory & make distclean
   - delete binaries

# $OpenXM: OpenXM/src/gnuplot-diff/Makefile,v 1.6 1999/11/19 16:39:29 maekawa Exp $

GNUPLOT = ../gnuplot
BINDIR = ../../bin

all : patch
	(cd $(GNUPLOT) ; ./configure --with-x ; make )
	touch ./.make_done

install:
	cp $(GNUPLOT)/gnuplot $(BINDIR)/gnuplot4ox
	cp $(GNUPLOT)/gnuplot_x11 $(BINDIR)/gnuplot_x11

clean : patch-clean
	@if [ -f ./.make_done ]; then \
		(cd $(GNUPLOT) ; make distclean ) \
	fi
	rm -f $(BINDIR)/gnuplot4ox $(BINDIR)/gnuplot_x11 ./.make_done

patch:
	@if [ ! -f ./.patch_done ]; then \
		(cd $(GNUPLOT) ; patch < ../gnuplot-diff/plot.c.diff) \
	fi
	touch ./.patch_done

patch-clean:
	@if [ -f ./.patch_done ]; then \
		(cd $(GNUPLOT) ; patch -R < ../gnuplot-diff/plot.c.diff) \
	fi
	rm -f ./.patch_done