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

Diff for /OpenXM/src/kan96xx/Attic/Makefile between version 1.23 and 1.24

version 1.23, 2000/08/31 13:35:09 version 1.24, 2000/09/17 03:12:10
Line 1 
Line 1 
 ##  $OpenXM: OpenXM/src/kan96xx/Makefile,v 1.22 2000/08/31 13:27:33 takayama Exp $  ##  $OpenXM: OpenXM/src/kan96xx/Makefile,v 1.23 2000/08/31 13:35:09 takayama 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
Line 7  OpenXM_ROOT=../../../OpenXM
Line 7  OpenXM_ROOT=../../../OpenXM
 OpenXM_bin=$(OpenXM_ROOT)/bin  OpenXM_bin=$(OpenXM_ROOT)/bin
   
 GC=$(OPENXM_CONTRIB)/gc  GC=$(OPENXM_CONTRIB)/gc
 GMP=$(OPENXM_CONTRIB)/gmp  
   
 all :   all-plugin all-sm1 all-kanlib.a  all :   all-plugin all-sm1 all-kanlib.a
 ## .SUFFIXES:  ## .SUFFIXES:
   
 all2 :  all-gc all-gmp  all2 :  all-gc
         (cd Kan; make all)          (cd Kan; make all)
   
 all-gc: configure_symbolic_links  all-gc: configure_symbolic_links
         (cd $(GC) ; make all)          (cd $(GC) ; make all)
   
 all-gmp: configure-gmp  
         if test -f /usr/lib/libgmp.a ; \  
         then \  
           echo "Using /usr/lib/libgmp.a" ; \  
           /bin/rm -rf $(GMP)/libgmp.a ; \  
           ln -s /usr/lib/libgmp.a $(GMP)/libgmp.a ; \  
         else \  
          (cd $(GMP) ; make) ; \  
         fi  
   
 all-sm1 : all-plugin  all-sm1 : all-plugin
         (cd Kan; make all)          (cd Kan; make all)
Line 45  sm1.nogc :
Line 35  sm1.nogc :
   
 configure: configure_symbolic_links  configure: configure_symbolic_links
   
 configure-gmp: configure_symbolic_links  
         if test -f $(GMP)/.gmp_configured ; \  
         then \  
           echo "MESSAGE(kan96xx/Makefile): gmp is already configured. (.gmp_configured) " ;  \  
         else \  
           (cd $(GMP) ; ./configure ; touch .gmp_configured) ; \  
         fi  
   
 configure_symbolic_links :  configure_symbolic_links :
         @if test ! -f ./.done_links  ; \          @if test ! -f ./.done_links  ; \

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.24

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