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

Diff for /OpenXM/src/pari/Makefile between version 1.10 and 1.28

version 1.10, 2000/02/27 07:26:21 version 1.28, 2021/03/25 03:02:40
Line 1 
Line 1 
 # $OpenXM: OpenXM/src/pari/Makefile,v 1.9 2000/01/08 21:47:04 maekawa Exp $  # $OpenXM: OpenXM/src/pari/Makefile,v 1.27 2020/08/26 06:03:31 noro Exp $
   
 PARI = ../../../OpenXM_contrib/pari  OpenXM_HOME=../..
 OpenXM_ROOT = ../../../OpenXM  PREFIX=${OpenXM_HOME}
   DISTDIR=${OpenXM_HOME}/../OpenXM_dist
   RM = /bin/rm
   RANLIB=ranlib
   PARI=pari-2.11.4
   PATCH_FILE=${PARI}.diff
   MASTER_SITE=http://www.math.kobe-u.ac.jp/pub/OpenXM/misc/
   DIST_SUFFIX=.tar.gz
   DISTFILES=${PARI}${DIST_SUFFIX}
   GALFILES=galdata.tgz galpol.tgz
   
 all: configure  all: build
         @if [ ! -f ./.make_done ]; then \  
                 (cd $(PARI) ; make all) \  fetch:
           -mkdir work
           @if [ ! -f work/.fetch_done ]; then \
               for i in ${DISTFILES} ${GALFILES}; do \
                   ${OpenXM_HOME}/bin/oxfetch.sh ${MASTER_SITE}"$$i" ${DISTDIR}; \
               done; \
           fi
           @touch work/.fetch_done
   
   extract: fetch
           @if [ ! -f work/.extract_done ]; then \
               cat ${DISTDIR}/${DISTFILES} | (cd work ; tar xzvf -) ; \
               for i in ${GALFILES}; do \
                   cat ${DISTDIR}/"$$i" | (cd work/${PARI} ; tar xzvf -) ; \
               done; \
           fi
           @touch work/.extract_done
   
   patch: extract
           @if [ ! -f work/.patch_done ]; then \
               if [ -f "${PATCH_FILE}" ]; then \
                   cat ${PATCH_FILE} | (cd work/${PARI} ; patch -p1 ) ; \
               fi \
           fi
           @touch work/.patch_done
   
   configure: patch
           @if [ ! -f work/.configure_done ]; then \
                   prefix=`cd ${OpenXM_HOME}; pwd` ; \
                   (cd work/${PARI} ; ./Configure --prefix="$$prefix" ) ; \
         fi          fi
         @touch ./.make_done          @touch work/.configure_done
   
 install: all install-lib  build: configure
         (cd $(PARI) ; make install)          @if [ ! -f work/.build_done ]; then \
         @if [ ! -d $(OpenXM_ROOT)/doc/pari ]; then \                  d=`cd work/${PARI} ; config/objdir` ; \
            mkdir $(OpenXM_ROOT)/doc/pari ;\                  (cd work/${PARI}/$$d ; ${MAKE} lib-sta; ${MAKE} gp) ; \
         fi          fi
         -cp $(OpenXM_ROOT)/lib/pari/users.dvi  $(OpenXM_ROOT)/doc/pari/users.dvi          @touch work/.build_done
         -cp $(OpenXM_ROOT)/lib/pari/tutorial.dvi  $(OpenXM_ROOT)/doc/pari/tutorial.dvi  
   
 clean:  build-doc: configure
         @if [ -f ./.make_done ]; then \          @if [ ! -f work/.build_doc_done ]; then \
                 (cd $(PARI) ; make clean) \                  (cd work/${PARI} ; ${MAKE} doc) ; \
         fi          fi
         @rm -f ./.make_done ./.configure_done          @touch work/.build_doc_done
   
 distclean:  install: build
         @cat BINARIES | xargs -t rm -rf          -mkdir ${PREFIX}/bin ${PREFIX}/lib
           @if [ ! -f work/.install_done ]; then \
                   d=`cd work/${PARI} ; config/objdir` ; \
                   (cd work/${PARI}/$$d ; ${MAKE} install-lib-sta install-include install-lib-dyn install-data) ; \
                   ${RANLIB} ${PREFIX}/lib/libpari.a ; \
           fi
           @touch work/.install_done
   
 configure:  install-doc: build-doc
         @if [ ! -f ./.configure_done ]; then \          -mkdir ${PREFIX}/doc/pari
                 (cd $(PARI) ; ./Configure --prefix=../../../OpenXM) \          @if [ ! -f work/.install_doc_done ]; then \
                   for i in users.dvi tutorial.dvi; do \
                           cp work/${PARI}/doc/$$i ${PREDIX}/doc/pari ; \
                   done ; \
         fi          fi
         @touch ./.configure_done          @touch work/.install_doc_done
   
 install-lib: all  clean:
         (cd $(PARI) ; make install-lib-sta)          -${RM} -rf work
         ranlib ../../lib/libpari.a  
   distclean: clean

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

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