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

Diff for /OpenXM/src/gmp/Makefile between version 1.4 and 1.15

version 1.4, 2004/02/22 08:28:20 version 1.15, 2008/02/13 10:46:40
Line 1 
Line 1 
 # $OpenXM: OpenXM/src/gmp/Makefile,v 1.3 2004/02/13 00:47:12 takayama Exp $  # $OpenXM: OpenXM/src/gmp/Makefile,v 1.14 2007/04/03 17:53:28 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
 GMP=${OpenXM_contrib}/gmp  MASTER_SITE=ftp://ftp.math.kobe-u.ac.jp/pub/OpenXM/misc/
 RM=rm  DISTNAME=gmp-4.2.2
 all:  DISTFILES=${DISTNAME}.tar.gz
         @if [ ! -f ./.use_ports ]; then \  WRKSRC=work/${DISTNAME}
                 make all-l ; \  #PATCHFILES = gmp.diff
         else \  PATCHFILES =
                 make -f Makefile-ports all ; \  
   all : build
   
   fetch:
           -mkdir work
           @if [ ! -f work/.fetch_done ]; then \
                   ${OpenXM_HOME}/bin/oxfetch.sh ${MASTER_SITE}${DISTFILES} ${DISTDIR}; \
           fi
           @touch work/.fetch_done
   
   extract: fetch
           @if [ ! -f work/.extract_done ]; then \
               cat ${DISTDIR}/${DISTFILES} | (cd work ; tar xzvf -) ; \
           fi
           @touch work/.extract_done
   
   patch: extract
           @if [ ! -f work/.patch_done ]; then \
           for i in ${PATCHFILES} ; do \
                   cat $$i | (cd ${WRKSRC}; patch -p0) ; \
           done ; \
           if [ `uname` = Darwin -a `uname -m` = i386 ]; then \
               (cd ${WRKSRC}/mpn/x86; ${RM} *dive_1* */*dive_1* */*/*dive_1* */*mode1o* */*/*mode1o*) ; \
           fi ; \
         fi          fi
 install:          @touch work/.patch_done
         @if [ ! -f ./.use_ports ]; then \  
                 make install-l ; \  configure: patch
         else \          @if [ ! -f work/.configure_done ]; then \
                 make -f Makefile-ports install ; \                  prefix=`cd ${OpenXM_HOME}; pwd` ; \
                   (cd ${WRKSRC} ; CC=${CC} ./configure --prefix="$$prefix" --enable-cxx) ; \
         fi          fi
 all-l: configure          @touch work/.configure_done
         -@if [ ! -f ./.make_done ]; then \  
                 (cd ${GMP} ; make) ; \  build : configure
                 touch ./.make_done ; \          @if [ ! -f work/.build_done ]; then \
                   (cd ${WRKSRC} ; ${MAKE} CC=${CC}) ; \
         fi          fi
 install-l: install-exec-l          @touch work/.build_done
 install-exec-l: all-l  
         if [ ! -f ./.install_done ]; then \  install: build
                 (cd ${GMP}; make install-exec) ; \          -mkdir ${PREFIX}/bin ${PREFIX}/lib
                 cp ${GMP}/gmp.h ${OpenXM_include} ; \          @if [ ! -f work/.install_done ]; then \
                 touch ./.install_done ; \                  (cd ${WRKSRC} ; ${MAKE} install) ; \
                   for i in config.h gmp-impl.h gmp-mparam.h fib_table.h mp_bases.h; do \
                           cp ${WRKSRC}/$$i ${OpenXM_HOME}/include ; \
                   done ; \
         fi          fi
 configure:          @touch work/.install_done
         if [ ! -f ./.configure_done ]; then \  
                 (cd ${GMP} ; ./configure --prefix=`pwd`/../../OpenXM ) ; \  clean:
                 touch ./.configure_done ; \          -${RM} -rf work
         fi  
 clean:  distclean: clean
         @if [ -f ./.make_done ]; then \  
                 (cd ${GMP} ; make clean) \  
         fi  
         ${RM} -f ./.*done  
 distclean:  
         -@if [ -f ./.make_done ]; then \  
                 (cd ${GMP} ; make distclean) \  
         fi  
         ${RM} -f ./.*done  

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.15

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