version 1.12, 2004/04/14 03:04:04 |
version 1.13, 2004/12/15 12:09:33 |
|
|
# $OpenXM: OpenXM/src/gnuplot/Makefile,v 1.11 2004/03/31 01:06:10 ohara Exp $ |
# $OpenXM: OpenXM/src/gnuplot/Makefile,v 1.12 2004/04/14 03:04:04 ohara Exp $ |
|
|
OpenXM_HOME = ../.. |
OpenXM_HOME = ../.. |
MASTER_SITE = ftp://ftp.math.kobe-u.ac.jp/pub/OpenXM/misc/ |
MASTER_SITE = ftp://ftp.math.kobe-u.ac.jp/pub/OpenXM/misc/ |
DISTNAME = gnuplot-3.7.3 |
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 |
|
|
|
|
|
|
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/gnuplot4ox ; \ |
|
${INSTALL_PROGRAM} gnuplot_x11 $${prefix}/libexec/gnuplot/4.0) ; \ |
fi |
fi |
@touch work/.install_done |
@touch work/.install_done |
|
|