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

Diff for /OpenXM/src/kan96xx/Attic/Makefile between version 1.10 and 1.12

version 1.10, 2000/01/10 19:11:59 version 1.12, 2000/01/15 22:18:15
Line 1 
Line 1 
 ##  $OpenXM: OpenXM/src/kan96xx/Makefile,v 1.9 1999/11/27 13:24:40 takayama Exp $  ##  $OpenXM: OpenXM/src/kan96xx/Makefile,v 1.11 2000/01/10 19:17:24 maekawa Exp $
   
 ## Type in make configure and make all to build all  ## Type in make configure and make all to build all
 OpenXM_contrib=../../../OpenXM_contrib  OpenXM_contrib=../../../OpenXM_contrib
 OPENXM_CONTRIB=../../../OpenXM_contrib  OPENXM_CONTRIB=../../../OpenXM_contrib
   OpenXM_ROOT=../../../OpenXM
   OpenXM_bin=$(OpenXM_ROOT)/bin
   
 GC=$(OPENXM_CONTRIB)/gc  GC=$(OPENXM_CONTRIB)/gc
 GMP=$(OPENXM_CONTRIB)/gmp  GMP=$(OPENXM_CONTRIB)/gmp
   
Line 16  all2 :  all-gc all-gmp
Line 19  all2 :  all-gc all-gmp
 all-gc:  all-gc:
         (cd $(GC) ; make all)          (cd $(GC) ; make all)
   
 all-gmp:  all-gmp: configure-gmp
         if test -f /usr/lib/libgmp.a ; \          if test -f /usr/lib/libgmp.a ; \
         then \          then \
           echo "Using /usr/lib/libgmp.a" ; \            echo "Using /usr/lib/libgmp.a" ; \
Line 32  all-gmp:   
Line 35  all-gmp:   
 sm1.nogc :  sm1.nogc :
         (cd Kan; make sm1.nogc)          (cd Kan; make sm1.nogc)
   
 configure : configure_symbolic_links  configure: configure_symbolic_links configure-gmp
         (cd $(GMP) ; ./configure )  
   
   configure-gmp:
           (cd $(GMP) ; ./configure)
   
 configure_symbolic_links :  configure_symbolic_links :
         /bin/rm -f gc gmp lib Doc/var.sm1          /bin/rm -f gc gmp lib Doc/var.sm1
         ln -f -s $(OpenXM_contrib)/gc gc          ln -f -s $(OpenXM_contrib)/gc gc
Line 47  configure_symbolic_links :
Line 52  configure_symbolic_links :
 dist :  dist :
         ./makeDist          ./makeDist
 ###############  ###############
 install :  install : install-openXM-bin
   
   install-usr-local :
         mkdir /usr/local/lib/sm1          mkdir /usr/local/lib/sm1
         cp lib/* /usr/local/lib/sm1          cp lib/* /usr/local/lib/sm1
         cp Kan/sm1 /usr/local/bin          cp Kan/sm1 /usr/local/bin
Line 77  clean-binary :
Line 84  clean-binary :
         echo " ../kanbinary*  will be removed"          echo " ../kanbinary*  will be removed"
         echo "after 10 seconds. To cancel type in ctrl-C."          echo "after 10 seconds. To cancel type in ctrl-C."
         ( sleep 10 ; /bin/rm -rf ../kanbinary* )          ( sleep 10 ; /bin/rm -rf ../kanbinary* )
 install-openXM-bin :  
         /bin/rm -f ../bin/sm1  
         cp Kan/sm1 ../bin  
 install2 :  
         /bin/rm -f ../bin/sm1  
         ln -f -s ../src/kan96xx/Kan/sm1 ../bin/sm1  
   
   install-openXM-bin : clean-for-debug
           cp Kan/sm1 $(OpenXM_bin)
   install-for-debug :
           ln -f -s ../src/kan96xx/Kan/sm1 $(OpenXM_bin)/sm1
   
   install-document :
           (cd Doc ; make install-document)
   
 ##############  ##############
   clean-for-debug :
           /bin/rm -f $(OpenXM_bin)/sm1
   
 clean :  clean :
         if test -f $(GMP)/Makefile ; \          if test -f $(GMP)/Makefile ; \
         then \          then \

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

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