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

Diff for /OpenXM/src/asir2000/Makefile between version 1.3 and 1.11

version 1.3, 2000/01/09 16:28:09 version 1.11, 2000/01/20 02:33:46
Line 1 
Line 1 
 # $OpenXM: OpenXM/src/asir2000/Makefile,v 1.2 2000/01/09 15:57:25 maekawa Exp $  # $OpenXM: OpenXM/src/asir2000/Makefile,v 1.10 2000/01/19 11:58:23 takayama Exp $
   
 ASIR = ../../../OpenXM_contrib2/asir2000  ASIR = ../../../OpenXM_contrib2/asir2000
   PARI = ../pari
   
 all: configure  all: configure
         @if [ ! -f ./.make_done ]; then \          @if [ ! -f ./.make_done ]; then \
Line 9  all: configure
Line 10  all: configure
         @touch ./.make_done          @touch ./.make_done
   
 install: all  install: all
         (cd $(ASIR) ; make install ; make install2)          (cd $(ASIR) ; make install ; make install-lib)
   
 clean:  clean:
         (cd $(ASIR) ; make clean)          (cd $(ASIR) ; make clean)
         @rm -f ./.make_done ./.configure_done          @rm -f ./.make_done ./.configure_done ./.install-pari_done
   
 distclean:  distclean: clean
         @cat BINARIES | xargs -t rm -rf          @cat BINARIES | xargs -t rm -rf
   
 configure:  configure: install-pari
         @if [ ! -f ./.configure_done ]; then \          @if [ ! -f ./.configure_done ]; then \
                 (cd $(ASIR) ; ./configure ; xmkmf -a ; make depend) \                  (cd $(ASIR) ; ./configure ; xmkmf ; make Makefiles ; make depend) \
         fi          fi
         @touch ./.configure_done          @touch ./.configure_done
   
   install-pari:
           @if [ ! -f ./.install-pari_done ]; then \
                   (cd $(PARI) ; make install) \
           fi
           @touch ./.install-pari_done

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.11

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