version 1.1, 2000/01/07 18:03:25 |
version 1.3, 2000/01/15 12:23:37 |
|
|
# $OpenXM$ |
# $OpenXM: OpenXM/src/gnuplot/Makefile,v 1.2 2000/01/08 16:36:24 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 \ |
(cd $(GNUPLOT) ; patch < $(CURDIR)/plot.c.diff) \ |
(cd $(GNUPLOT) ; patch < $(CURDIR)/plot.c.diff) \ |
fi |
fi |
@touch ./.patch_done |
@touch ./.patch_done |