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

Diff for /OpenXM/src/Makefile between version 1.4 and 1.42

version 1.4, 1999/11/01 06:39:57 version 1.42, 2000/01/08 19:11:10
Line 1 
Line 1 
 ## Type in make configure and make all to build all  ## Type in make configure and make all to build all
 all : all1 all2 all3  ## $OpenXM: OpenXM/src/Makefile,v 1.41 2000/01/08 18:48:46 maekawa Exp $
   
 all1 :  all: configure all-kan96xx all-kxx all-tigers all-phc all-k097 \
         (cd kan96xx ; make all )       all-pari all-asir all-gnuplot all-openmath all-oxmath
         (cd kan96xx ; make install-openXM-bin)  
         (cd kxx ; make all)  
         (cd kxx ; make install)  
 all2 :  
         (cd gnuplot-diff ; make all)  
         (cd Ti ; make all )  
         (cd phc ; make all )  
 all3 :  
         (cd k097 ; make all ; cp k0 ../../bin)  
 all4 :  
         (cd JavaSupport ; make )  
   
   
 clean :  all-asir: configure-asir
         /bin/rm -rf ../*~  *~          (cd asir2000 ; make all ; make install ; make install2)
         (cd kan96xx ; make cleana )  
   all-gnuplot: configure-gnuplot
           (cd gnuplot ; make all ; make install)
   
   all-kan96xx:
           (cd kan96xx ; make all ; make install2)
   
   all-kxx:
           (cd kxx ; make all ; make install2)
   
   all-k097:
           (cd k097 ; make all ; make install)
   
   all-openmath:
           @if ../misc/which.pl -s javac ; then \
                   (cd OpenMath ; make) ; \
           else \
                   echo -n "Warning: javac (java compiler) is not found " ; \
                   echo "in your search path. OpenMath will not be compiled." ; \
           fi
   
   all-oxmath:
           @if test -d /usr/local/mathematica ; then \
                   (cd ox_math ; make) ; \
           else \
                   echo -n "Warning: Mathematica is not found. " ; \
                   echo "ox_math will not be compiled." ; \
           fi
   
   all-pari: configure-pari
           (cd pari ; make all)
   
   all-phc:
           (cd phc ; make all ; make install)
   
   all-tigers:
           (cd tigers ; make all ; make install)
   
   install: install-pari
   
   install-pari: all-pari
           (cd pari ; make install ; ranlib ../../../OpenXM/lib/libpari.a)
   
   clean:
           (cd kan96xx ; make clean)
         (cd kxx ; make clean)          (cd kxx ; make clean)
         (cd Ti ; make clean)          (cd tigers ; make clean)
         /bin/rm -rf kan96.tgz kxx.tgz *~ ../*~          (cd gnuplot ; make clean)
         /bin/rm -rf k097.tgz          (cd pari ; make clean)
 #       (cd kan96xx ; make clean-binary )          (cd phc ; make clean)
 #       (cd kxx ; make clean-binary )          (cd k097 ; make clean)
         (cd gnuplot-diff ; make clean )          (cd asir2000 ; make clean)
         /bin/rm -rf ../bin/tigers  #       (cd ox_math ; make clean)
         (cd phc ; make clean )          /bin/rm -rf bin/sm1 bin/ox bin/oxlog bin/ox_sm1 bin/phc6 bin/tigers bin/k0 bin/oxweave bin/gp-2.0 bin/gphelp bin/fep.linux bin/lin_phcv2p
         (cd k097 ; make clean ; /bin/rm -rf ../../bin/k0)  
         /bin/rm -rf bin/sm1 bin/ox bin/oxlog bin/ox_sm1 bin/phc6  
   
 configure :  distclean: clean
         ln -fs ../bin bin          (cd gnuplot ; make distclean)
         ln -fs ./kan96xx SSkan          (cd kan96xx ; make distclean)
         ln -fs ./kan96xx/gmp gmp          (cd pari ; make distclean)
         (cd ../lib ; ln -fs ../src/k097 k097 ; ln -fs ../src/kan96xx/Doc sm1)          (cd tigers ; make distclean)
         (cd ../bin ; ./configure2 )  
         (cd kan96xx ; make configure )  
         (cd kxx ; ln -fs  ../SSkan/plugin/ox_kan.h ox_kan.h)  
         (cd ../lib/asir ; ./configure2 )  
   
 install-usr-local :  configure: configure-links configure-asir configure-gnuplot
         ln -sf `pwd`/SSkan/Doc    /usr/local/lib/sm1          (cd ../bin ; ./configure2)
         ln -sf `pwd`/../lib/asir  /usr/local/lib/asir          (cd kxx ; make configure)
         ln -sf `pwd`/../bin/sm1  /usr/local/bin/sm1          (cd kan96xx ; make configure)
         ln -sf `pwd`/../bin/fep  /usr/local/bin/fep          (cd ox_math; ./configure)
   
   configure-asir: install-pari
           (cd asir2000; make configure)
   
   configure-gnuplot:
           (cd gnuplot ; make configure)
   
   configure-links:
           ./make-links
   
   configure-pari:
           (cd pari ; make configure)

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.42

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