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

Diff for /OpenXM/src/gc/Makefile between version 1.3 and 1.11

version 1.3, 2003/11/10 11:42:59 version 1.11, 2004/04/21 11:32:07
Line 1 
Line 1 
 # $OpenXM: OpenXM/src/gc/Makefile,v 1.2 2003/09/14 01:19:57 takayama Exp $  # $OpenXM: OpenXM/src/gc/Makefile,v 1.10 2004/03/31 01:06:10 ohara 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  DISTFILES=gc6.2.tar.gz
   GC=gc6.2
   PATCH_INTERIX = ${OpenXM_HOME}/../OpenXM_contrib2/asir2000/gc_interix.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) ; \              cat ${PATCH_INTERIX} | (cd work/${GC} ; patch -p0) ; \
                 touch ./.make_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 work/${GC} ; ./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
         ${RM} -f ./.*done  
         @if [ -f ./.make_done ]; then \  build : configure
                 (cd ${GC} ; make clean) \          @if [ ! -f work/.build_done ]; then \
                   (cd work/${GC} ; ${MAKE}) ; \
         fi          fi
 distclean:          @touch work/.build_done
         ${RM} -f ./.*done  
         -@if [ -f ./.make_done ]; then \  install: build
                 (cd ${GC} ; make distclean) \          @if [ ! -f work/.install_done ]; then \
                   (cd work/${GC} ; ${MAKE} install) ; \
         fi          fi
           @touch work/.install_done
   
   clean:
           -$(RM) -rf work
   
   distclean: clean
   

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.11

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