version 1.10, 2004/03/30 10:27:30 |
version 1.14, 2004/12/17 00:13:08 |
|
|
# $OpenXM: OpenXM/src/gnuplot/Makefile,v 1.9 2004/02/22 14:11:02 takayama Exp $ |
# $OpenXM: OpenXM/src/gnuplot/Makefile,v 1.13 2004/12/15 12:09:33 ohara Exp $ |
|
|
OpenXM_HOME = ../.. |
OpenXM_HOME = ../.. |
DISTNAME = gnuplot-3.7.3 |
MASTER_SITE = ftp://ftp.math.kobe-u.ac.jp/pub/OpenXM/misc/ |
|
DISTNAME = gnuplot-4.0.0 |
DISTFILES = ${DISTNAME}.tar.gz |
DISTFILES = ${DISTNAME}.tar.gz |
DISTDIR = ${OpenXM_HOME}/../OpenXM_dist |
DISTDIR = ${OpenXM_HOME}/../OpenXM_dist |
WRKSRC = work/${DISTNAME} |
WRKSRC = work/${DISTNAME} |
PATCHES = configure.diff plot.c.diff |
PATCH_FILES = gnuplot-v4.diff |
|
INSTALL_PROGRAM = install -c -s |
|
|
all: build |
all: build |
|
|
|
|
|
|
patch: extract |
patch: extract |
@if [ ! -f work/.patch_done ]; then \ |
@if [ ! -f work/.patch_done ]; then \ |
for i in ${PATCHES}; do cat $$i | (cd ${WRKSRC}; patch -p0); done ; \ |
for i in ${PATCH_FILES}; do cat $$i | (cd ${WRKSRC}; patch -p1); done;\ |
fi |
fi |
@touch work/.patch_done |
@touch work/.patch_done |
|
|
configure: patch |
configure: patch |
@if [ ! -f work/.configure_done ]; then \ |
if [ ! -f work/.configure_done ]; then \ |
(cd ${WRKSRC} ; ./configure --with-x --prefix=`cd ../..; cd ${OpenXM_HOME}; pwd` ) ; \ |
prefix=`cd ${OpenXM_HOME}; pwd` ; \ |
|
(cd ${WRKSRC} ; ./configure --with-x --prefix="$$prefix" ) ; \ |
fi |
fi |
@touch work/.configure_done |
@touch work/.configure_done |
|
|
build: configure |
build: configure |
@if [ ! -f work/.build_done ]; then \ |
@if [ ! -f work/.build_done ]; then \ |
(cd ${WRKSRC} ; ${MAKE} ) ; \ |
(cd ${WRKSRC}/src; ${MAKE}) ; \ |
fi |
fi |
@touch work/.build_done |
@touch work/.build_done |
|
|
install: build |
install: build |
@if [ ! -f work/.install_done ]; then \ |
@if [ ! -f work/.install_done ]; then \ |
(cd ${WRKSRC} ; ${MAKE} install) ; \ |
prefix=`cd ${OpenXM_HOME}; pwd`; \ |
|
mkdir -p $${prefix}/libexec/gnuplot/4.0; \ |
|
(cd ${WRKSRC}/src; \ |
|
${INSTALL_PROGRAM} gnuplot $${prefix}/bin/gnuplot ; \ |
|
${INSTALL_PROGRAM} gnuplot_x11 $${prefix}/libexec/gnuplot/4.0) ; \ |
fi |
fi |
@touch work/.install_done |
@touch work/.install_done |
|
|
|
|
-rm -rf work |
-rm -rf work |
|
|
distclean: clean |
distclean: clean |
-rm -f ${OpenXM_HOME}/bin/gnuplot4ox ${OpenXM_HOME}/bin/gnuplot_x11 |
-rm -f ${OpenXM_HOME}/bin/gnuplot ${OpenXM_HOME}/bin/gnuplot_x11 |