[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.8

version 1.4, 2004/02/22 08:28:20 version 1.8, 2004/03/25 03:17:09
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.7 2004/03/25 01:52:18 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 -rf
 GMP=${OpenXM_contrib}/gmp  MASTER_SITE=ftp://ftp.math.kobe-u.ac.jp/pub/OpenXM/misc/
 RM=rm  DISTFILES=gmp-4.1.2.tar.gz
 all:  GMP=gmp-4.1.2
         @if [ ! -f ./.use_ports ]; then \  
                 make all-l ; \  all : build
         else \  
                 make -f Makefile-ports all ; \  fetch:
           @if [ ! -f .fetch_done ]; then \
                   ${OpenXM_HOME}/bin/oxfetch.sh ${MASTER_SITE}${DISTFILES} ${DISTDIR}; \
           fi
           @touch .fetch_done
   
   extract: fetch
           -mkdir work
           @if [ ! -f .extract_done ]; then \
               cat ${DISTDIR}/${DISTFILES} | (cd work ; tar xzvf -) ; \
           fi
           @touch .extract_done
   
   patch: extract
           @touch .patch_done
   
   build : patch
           @if test ! -f .build_done ; then \
                   (cd work/${GMP} ; ./configure --prefix `cd ../..; cd ${OpenXM_HOME}; pwd`; ${MAKE}) ; \
         fi          fi
 install:          @touch .build_done
         @if [ ! -f ./.use_ports ]; then \  
                 make install-l ; \  install: build
         else \          -mkdir ${PREFIX}/bin ${PREFIX}/lib
                 make -f Makefile-ports install ; \          @if [ ! -f .install_done ]; then \
                   (cd work/${GMP} ; ${MAKE} install) ; \
                   for i in config.h gmp-impl.h gmp-mparam.h; do \
                           cp work/${GMP}/$$i ${OpenXM_HOME}/include ; \
                   done ; \
         fi          fi
 all-l: configure          @touch .install_done
         -@if [ ! -f ./.make_done ]; then \  
                 (cd ${GMP} ; make) ; \  clean:
                 touch ./.make_done ; \          -$(RM) ./.*_done
         fi          -$(RM) -rf work
 install-l: install-exec-l  
 install-exec-l: all-l  distclean: clean
         if [ ! -f ./.install_done ]; then \  
                 (cd ${GMP}; make install-exec) ; \  
                 cp ${GMP}/gmp.h ${OpenXM_include} ; \  
                 touch ./.install_done ; \  
         fi  
 configure:  
         if [ ! -f ./.configure_done ]; then \  
                 (cd ${GMP} ; ./configure --prefix=`pwd`/../../OpenXM ) ; \  
                 touch ./.configure_done ; \  
         fi  
 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.8

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