[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / OpenXM / src / gc

Annotation of OpenXM/src/gc/Makefile, Revision 1.18

1.18    ! ohara       1: # $OpenXM: OpenXM/src/gc/Makefile,v 1.17 2008/03/19 07:11:53 ohara Exp $
1.1       takayama    2: OpenXM_HOME=../..
1.7       takayama    3: PREFIX=${OpenXM_HOME}
                      4: DISTDIR=${OpenXM_HOME}/../OpenXM_dist
1.8       ohara       5: RM = /bin/rm
                      6: MASTER_SITE=ftp://ftp.math.kobe-u.ac.jp/pub/OpenXM/misc/
1.14      takayama    7: # Original. http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/
1.17      ohara       8: DISTNAME=gc6.8
1.12      ohara       9: DISTFILES=${DISTNAME}.tar.gz
                     10: WRKSRC=work/${DISTNAME}
1.17      ohara      11: PATCHFILES = ${OpenXM_HOME}/../OpenXM_contrib2/asir2000/gc6.diff
1.7       takayama   12:
1.9       ohara      13: all : build
1.7       takayama   14:
                     15: fetch:
1.9       ohara      16:        -mkdir work
                     17:        @if [ ! -f work/.fetch_done ]; then \
1.8       ohara      18:                ${OpenXM_HOME}/bin/oxfetch.sh ${MASTER_SITE}${DISTFILES} ${DISTDIR}; \
1.9       ohara      19:        fi
                     20:        @touch work/.fetch_done
1.3       takayama   21:
1.8       ohara      22: extract: fetch
1.9       ohara      23:        @if [ ! -f work/.extract_done ]; then \
1.12      ohara      24:            cat ${DISTDIR}/${DISTFILES} | (cd work; tar xzvf -) ; \
1.18    ! ohara      25:                chmod +x ${WRKSRC}/install-sh ; \
1.9       ohara      26:        fi
                     27:        @touch work/.extract_done
1.8       ohara      28:
                     29: patch: extract
1.9       ohara      30:        @if [ ! -f work/.patch_done ]; then \
1.15      ohara      31:         for i in ${PATCHFILES} ; do \
1.17      ohara      32:                cat $$i | (cd ${WRKSRC}; patch -p1) ; \
1.15      ohara      33:         done ; \
1.9       ohara      34:        fi
                     35:        @touch work/.patch_done
                     36:
                     37: configure : patch
                     38:        @if [ ! -f work/.configure_done ]; then \
1.10      ohara      39:                prefix=`cd ${OpenXM_HOME}; pwd` ; \
1.12      ohara      40:                (cd ${WRKSRC}; ./configure --disable-threads --prefix="$$prefix" ) ; \
1.8       ohara      41:        fi
1.9       ohara      42:        @touch work/.configure_done
1.1       takayama   43:
1.9       ohara      44: build : configure
                     45:        @if [ ! -f work/.build_done ]; then \
1.12      ohara      46:                (cd ${WRKSRC}; ${MAKE}) ; \
1.1       takayama   47:        fi
1.9       ohara      48:        @touch work/.build_done
1.6       ohara      49:
1.8       ohara      50: install: build
1.9       ohara      51:        @if [ ! -f work/.install_done ]; then \
1.12      ohara      52:                (cd ${WRKSRC}; ${MAKE} install) ; \
1.6       ohara      53:        fi
1.9       ohara      54:        @touch work/.install_done
1.6       ohara      55:
1.7       takayama   56: clean:
1.8       ohara      57:        -$(RM) -rf work
                     58:
                     59: distclean: clean

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>