version 1.5, 2004/02/13 00:47:12 |
version 1.17, 2008/03/19 07:11:53 |
|
|
# $OpenXM: OpenXM/src/gc/Makefile,v 1.4 2003/11/10 23:13:38 takayama Exp $ |
# $OpenXM: OpenXM/src/gc/Makefile,v 1.16 2006/04/29 12:56:07 takayama Exp $ |
OpenXM_HOME=../.. |
OpenXM_HOME=../.. |
OpenXM_contrib=${OpenXM_HOME}/../OpenXM_contrib |
PREFIX=${OpenXM_HOME} |
OpenXM_lib=${OpenXM_HOME}/lib |
DISTDIR=${OpenXM_HOME}/../OpenXM_dist |
OpenXM_include=${OpenXM_HOME}/include |
RM = /bin/rm |
GC=${OpenXM_contrib}/gc |
MASTER_SITE=ftp://ftp.math.kobe-u.ac.jp/pub/OpenXM/misc/ |
RM=rm |
# Original. http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/ |
|
DISTNAME=gc6.8 |
|
DISTFILES=${DISTNAME}.tar.gz |
|
WRKSRC=work/${DISTNAME} |
|
PATCHFILES = ${OpenXM_HOME}/../OpenXM_contrib2/asir2000/gc6.diff |
|
|
all: |
all : build |
@if [ ! -f ./.use_ports ]; then \ |
|
make all-l ; \ |
fetch: |
else \ |
-mkdir work |
make -f Makefile-ports all ; \ |
@if [ ! -f work/.fetch_done ]; then \ |
|
${OpenXM_HOME}/bin/oxfetch.sh ${MASTER_SITE}${DISTFILES} ${DISTDIR}; \ |
fi |
fi |
install: |
@touch work/.fetch_done |
@if [ ! -f ./.use_ports ]; then \ |
|
make install-l ; \ |
extract: fetch |
else \ |
@if [ ! -f work/.extract_done ]; then \ |
make -f Makefile-ports install ; \ |
cat ${DISTDIR}/${DISTFILES} | (cd work; tar xzvf -) ; \ |
fi |
fi |
|
@touch work/.extract_done |
|
|
all-l: |
patch: extract |
@if [ ! -f ./.make_done ]; then \ |
@if [ ! -f work/.patch_done ]; then \ |
(cd ${GC} ; make) ; \ |
for i in ${PATCHFILES} ; do \ |
touch ./.make_done ; \ |
cat $$i | (cd ${WRKSRC}; patch -p1) ; \ |
|
done ; \ |
fi |
fi |
|
@touch work/.patch_done |
|
|
install-l: all-l |
configure : patch |
if [ ! -f ./.install_done ]; then \ |
@if [ ! -f work/.configure_done ]; then \ |
cp ${GC}/gc.a ${OpenXM_lib}/libgc.a ; \ |
prefix=`cd ${OpenXM_HOME}; pwd` ; \ |
if test ! -d ${OpenXM_include}/gc ; then mkdir -p ${OpenXM_include}/gc ; fi ; \ |
(cd ${WRKSRC}; ./configure --disable-threads --prefix="$$prefix" ) ; \ |
cp ${GC}/include/gc.h ${GC}/include/gc_cpp.h ${OpenXM_include}/gc ; \ |
|
touch ./.install_done ; \ |
|
fi |
fi |
clean: |
@touch work/.configure_done |
@if [ -f ./.make_done ]; then \ |
|
(cd ${GC} ; make clean) \ |
build : configure |
|
@if [ ! -f work/.build_done ]; then \ |
|
(cd ${WRKSRC}; ${MAKE}) ; \ |
fi |
fi |
${RM} -f ./.*done |
@touch work/.build_done |
distclean: |
|
-@if [ -f ./.make_done ]; then \ |
install: build |
(cd ${GC} ; make distclean) \ |
@if [ ! -f work/.install_done ]; then \ |
|
(cd ${WRKSRC}; ${MAKE} install) ; \ |
fi |
fi |
${RM} -f ./.*done ./.use_ports |
@touch work/.install_done |
|
|
|
clean: |
|
-$(RM) -rf work |
|
|
|
distclean: clean |