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

Diff for /OpenXM/src/asir2000/Makefile between version 1.13 and 1.27

version 1.13, 2000/01/20 08:12:43 version 1.27, 2012/05/07 13:35:51
Line 1 
Line 1 
 # $OpenXM: OpenXM/src/asir2000/Makefile,v 1.12 2000/01/20 07:47:39 takayama Exp $  # $OpenXM: OpenXM/src/asir2000/Makefile,v 1.26 2008/08/08 05:41:27 ohara Exp $
   
   OpenXM_HOME=../..
   PREFIX=${OpenXM_HOME}
   DISTDIR=${OpenXM_HOME}/../OpenXM_dist
   MASTER_SITE=ftp://ftp.math.kobe-u.ac.jp/pub/OpenXM/misc/
   # Original. http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/
   DISTNAME=gc6.8
   DISTFILES=${DISTNAME}.tar.gz
   
 ASIR = ../../../OpenXM_contrib2/asir2000  ASIR = ../../../OpenXM_contrib2/asir2000
 PARI = ../pari  PARI = ../pari
   
 all: configure  all: configure install-pari
         @if [ ! -f ./.make_done ]; then \          @if [ ! -f ./.make_done ]; then \
                 (cd $(ASIR) ; make all) \                  (cd ${ASIR} ; ${MAKE} all) \
         fi          fi
         @touch ./.make_done          @touch ./.make_done
   
 install: all  install: all
         (cd $(ASIR) ; make install ; make install-lib)          (cd ${ASIR} ; ${MAKE} install-openxm)
   
 clean:  clean:
         (cd $(ASIR) ; make clean)          (cd ${ASIR} ; ${MAKE} clean)
         @rm -f ./.make_done ./.configure_done ./.install-pari_done          @rm -f ./.make_* ./.configure_* ./.install-* ./.fetch*
   
 distclean: clean  distclean: clean
         @cat BINARIES | xargs -t rm -rf          @cat BINARIES | xargs -t rm -rf
   
 configure: install-pari  fetch:
           @if [ ! -f .fetch_done ]; then \
                   for i in ${DISTFILES}; do \
                           ${OpenXM_HOME}/bin/oxfetch.sh ${MASTER_SITE}${DISTFILES} ${DISTDIR}; \
                   done \
           fi
           @touch .fetch_done
   
   configure: fetch
         @if [ ! -f ./.configure_done ]; then \          @if [ ! -f ./.configure_done ]; then \
                 (cd $(ASIR) ; ./configure ; xmkmf ; make Makefiles ; make depend) \                  (cd $(ASIR) ; \
               ./configure --enable-plot --with-pari --prefix="`cd ../../OpenXM; pwd`") \
         fi          fi
         @touch ./.configure_done          @touch ./.configure_done
   
 install-pari:  install-pari:
         @if [ ! -f ./.install-pari_done ]; then \          @if [ ! -f ./.install-pari_done ]; then \
                 (cd $(PARI) ; make install) \                  (cd ${PARI} ; ${MAKE} install) \
         fi          fi
         @touch ./.install-pari_done          @touch ./.install-pari_done

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.27

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