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

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

version 1.12, 2000/01/15 22:18:15 version 1.13, 2000/01/17 09:50:20
Line 1 
Line 1 
 ##  $OpenXM: OpenXM/src/kan96xx/Makefile,v 1.11 2000/01/10 19:17:24 maekawa Exp $  ##  $OpenXM: OpenXM/src/kan96xx/Makefile,v 1.12 2000/01/15 22:18:15 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 9  OpenXM_bin=$(OpenXM_ROOT)/bin
Line 9  OpenXM_bin=$(OpenXM_ROOT)/bin
 GC=$(OPENXM_CONTRIB)/gc  GC=$(OPENXM_CONTRIB)/gc
 GMP=$(OPENXM_CONTRIB)/gmp  GMP=$(OPENXM_CONTRIB)/gmp
   
 all :   all-gc all-gmp  all :   all-gc all-gmp all-plugin all-sm1 all-kanlib.a
         (cd plugin; make all)  
         (cd Kan; make all)  
   
 all2 :  all-gc all-gmp  all2 :  all-gc all-gmp
         (cd Kan; make all)          (cd Kan; make all)
Line 29  all-gmp: configure-gmp
Line 27  all-gmp: configure-gmp
          (cd $(GMP) ; make) ; \           (cd $(GMP) ; make) ; \
         fi          fi
   
   all-sm1 : all-plugin
           (cd Kan; make all)
   
   all-plugin :
            (cd plugin ; make all)
   
   all-kanlib.a : all-plugin
           (cd Kan ; make kanlib.a)
   
   
   
 ### When you make sm1 without the garbage collector, type in make sm1.nogc  ### When you make sm1 without the garbage collector, type in make sm1.nogc
 sm1.nogc :  sm1.nogc :
         (cd Kan; make sm1.nogc)          (cd Kan; make sm1.nogc)
Line 38  sm1.nogc :
Line 45  sm1.nogc :
 configure: configure_symbolic_links configure-gmp  configure: configure_symbolic_links configure-gmp
   
 configure-gmp:  configure-gmp:
         (cd $(GMP) ; ./configure)          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 :
         /bin/rm -f gc gmp lib Doc/var.sm1          /bin/rm -f gc gmp lib Doc/var.sm1
Line 119  distclean :
Line 131  distclean :
         then \          then \
           (cd $(GMP) ; make distclean) ; \            (cd $(GMP) ; make distclean) ; \
         fi          fi
           -/bin/rm -f $(GMP)/.gmp_configured
         if test -f $(GC)/Makefile ; \          if test -f $(GC)/Makefile ; \
         then \          then \
           (cd $(GC); make clean; /bin/rm -f *.a) ; \            (cd $(GC); make clean; /bin/rm -f *.a) ; \

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

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