version 1.10, 2004/03/31 01:06:10 |
version 1.17, 2008/03/19 07:11:53 |
|
|
# $OpenXM: OpenXM/src/gc/Makefile,v 1.9 2004/03/26 08:46:10 ohara Exp $ |
# $OpenXM: OpenXM/src/gc/Makefile,v 1.16 2006/04/29 12:56:07 takayama Exp $ |
OpenXM_HOME=../.. |
OpenXM_HOME=../.. |
PREFIX=${OpenXM_HOME} |
PREFIX=${OpenXM_HOME} |
DISTDIR=${OpenXM_HOME}/../OpenXM_dist |
DISTDIR=${OpenXM_HOME}/../OpenXM_dist |
RM = /bin/rm |
RM = /bin/rm |
MASTER_SITE=ftp://ftp.math.kobe-u.ac.jp/pub/OpenXM/misc/ |
MASTER_SITE=ftp://ftp.math.kobe-u.ac.jp/pub/OpenXM/misc/ |
DISTFILES=gc6.2.tar.gz |
# Original. http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/ |
GC=gc6.2 |
DISTNAME=gc6.8 |
PATCH_INTERIX = ${OpenXM_HOME}/../OpenXM_contrib2/asir2000/gc_interix.diff |
DISTFILES=${DISTNAME}.tar.gz |
|
WRKSRC=work/${DISTNAME} |
|
PATCHFILES = ${OpenXM_HOME}/../OpenXM_contrib2/asir2000/gc6.diff |
|
|
all : build |
all : build |
|
|
|
|
|
|
extract: fetch |
extract: fetch |
@if [ ! -f work/.extract_done ]; then \ |
@if [ ! -f work/.extract_done ]; then \ |
cat ${DISTDIR}/${DISTFILES} | (cd work ; tar xzvf -) ; \ |
cat ${DISTDIR}/${DISTFILES} | (cd work; tar xzvf -) ; \ |
fi |
fi |
@touch work/.extract_done |
@touch work/.extract_done |
|
|
patch: extract |
patch: extract |
@if [ ! -f work/.patch_done ]; then \ |
@if [ ! -f work/.patch_done ]; then \ |
cat ${PATCH_INTERIX} | (cd work/${GC} ; patch -p0) ; \ |
for i in ${PATCHFILES} ; 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 \ |
prefix=`cd ${OpenXM_HOME}; pwd` ; \ |
prefix=`cd ${OpenXM_HOME}; pwd` ; \ |
(cd work/${GC} ; ./configure --prefix="$$prefix" ) ; \ |
(cd ${WRKSRC}; ./configure --disable-threads --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 work/${GC} ; ${MAKE}) ; \ |
(cd ${WRKSRC}; ${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 work/${GC} ; ${MAKE} install) ; \ |
(cd ${WRKSRC}; ${MAKE} install) ; \ |
fi |
fi |
@touch work/.install_done |
@touch work/.install_done |
|
|
|
|
-$(RM) -rf work |
-$(RM) -rf work |
|
|
distclean: clean |
distclean: clean |
|
|