[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.18

version 1.12, 2000/01/15 22:18:15 version 1.18, 2000/02/03 09:30:17
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.17 2000/02/01 04:24:19 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)  ## .SUFFIXES:
         (cd Kan; make all)  
   
 all2 :  all-gc all-gmp  all2 :  all-gc all-gmp
         (cd Kan; make all)          (cd Kan; make all)
   
 all-gc:  all-gc: configure_symbolic_links
         (cd $(GC) ; make all)          (cd $(GC) ; make all)
   
 all-gmp: configure-gmp  all-gmp: configure-gmp
Line 29  all-gmp: configure-gmp
Line 28  all-gmp: configure-gmp
          (cd $(GMP) ; make) ; \           (cd $(GMP) ; make) ; \
         fi          fi
   
   all-sm1 : all-plugin
           (cd Kan; make all)
   
   all-plugin : configure_symbolic_links
            (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)
   
 configure: configure_symbolic_links configure-gmp  configure: configure_symbolic_links configure-gmp
   
 configure-gmp:  configure-gmp: configure_symbolic_links
         (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          @if test ! -f ./.done_links  ; \
         ln -f -s $(OpenXM_contrib)/gc gc          then \
         ln -f -s $(OpenXM_contrib)/gmp gmp           /bin/rm -f gc gmp lib Doc/var.sm1 ; \
 #       ln -f -s gmp-2.0.2-ssh-2 gmp           ln -f -s $(OpenXM_contrib)/gc gc ; \
         ln -f -s ./Doc lib           ln -f -s $(OpenXM_contrib)/gmp gmp ; \
         (cd Doc; ln -f -s ../Kan/var.sm1 var.sm1)           ln -f -s ./Doc lib ; \
            (cd Doc; ln -f -s ../Kan/var.sm1 var.sm1) ; \
           fi
           @touch ./.done_links
   
 ### generate a distribution.  ### generate a distribution.
 dist :  dist :
         ./makeDist          ./makeDist
 ###############  ###############
 install : install-openXM-bin  install : install-openXM-bin install-document
   
 install-usr-local :  install-usr-local :
         mkdir /usr/local/lib/sm1          mkdir /usr/local/lib/sm1
Line 98  clean-for-debug :
Line 114  clean-for-debug :
         /bin/rm -f $(OpenXM_bin)/sm1          /bin/rm -f $(OpenXM_bin)/sm1
   
 clean :  clean :
           /bin/rm -f ./.done_links
         if test -f $(GMP)/Makefile ; \          if test -f $(GMP)/Makefile ; \
         then \          then \
           (cd $(GMP) ; make clean) ; \            (cd $(GMP) ; make clean) ; \
Line 114  clean :
Line 131  clean :
 ### clean also *.a files.  ### clean also *.a files.
 cleana:  distclean  cleana:  distclean
   
 distclean :  distclean : clean
         if test -f $(GMP)/Makefile ; \          if test -f $(GMP)/Makefile ; \
         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) ; \
         fi          fi
         (cd Kan; make cleana)          (cd Kan; make cleana)
         (cd plugin; make clean; /bin/rm -f *.a)          (cd plugin; make clean; /bin/rm -f *.a)
           /bin/rm -rf gc gmp lib Doc/var.sm1
   

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

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