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

Diff for /OpenXM/src/gc/Makefile between version 1.6 and 1.10

version 1.6, 2004/02/28 15:35:45 version 1.10, 2004/03/31 01:06:10
Line 1 
Line 1 
 # $OpenXM: OpenXM/src/gc/Makefile,v 1.5 2004/02/13 00:47:12 takayama Exp $  # $OpenXM: OpenXM/src/gc/Makefile,v 1.9 2004/03/26 08:46: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: configure-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 --prefix="$$prefix" ) ; \
                 cp ${GC}/include/gc.h ${GC}/include/gc_cpp.h ${OpenXM_include}/gc ; \  
                 touch ./.install_done ; \  
         fi          fi
           @touch work/.configure_done
   
 configure-l:  build : configure
         @if [ ! -f ./.configure_done ]; then \          @if [ ! -f work/.build_done ]; then \
             if [ `uname` = "Interix" ]; then \                  (cd work/${GC} ; ${MAKE}) ; \
                 cat ./gc5_interix.diff | ( cd ${OpenXM_contrib}/gc; patch ); \  
             fi ; \  
             touch ./.configure_done ; \  
         fi          fi
           @touch work/.build_done
   
 clean:  install: build
         @if [ -f ./.make_done ]; then \          @if [ ! -f work/.install_done ]; then \
                 (cd ${GC} ; make clean) \                  (cd work/${GC} ; ${MAKE} install) ; \
         fi          fi
         ${RM} -f ./.*done          @touch work/.install_done
 distclean:  
         -@if [ -f ./.make_done ]; then \  clean:
                 (cd ${GC} ; make distclean) \          -$(RM) -rf work
         fi  
         ${RM} -f ./.*done ./.use_ports  distclean: clean
   

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.10

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