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

Annotation of OpenXM/src/Makefile, Revision 1.28

1.2       takayama    1: ## Type in make configure and make all to build all
1.28    ! maekawa     2: ## $OpenXM: OpenXM/src/Makefile,v 1.27 2000/01/07 19:35:24 maekawa Exp $
1.27      maekawa     3: all : all1 all-tigers all-phc all4 all-pari all-asir all-gnuplot all-openmath all-oxmath
1.1       maekawa     4:
                      5: all1 :
                      6:        (cd kan96xx ; make all )
1.9       takayama    7:        (cd kan96xx ; make install2)
1.1       maekawa     8:        (cd kxx ; make all)
1.9       takayama    9:        (cd kxx ; make install2)
1.26      maekawa    10:
                     11: all-asir:
                     12:        (cd asir2000 ; xmkmf -a ; make ; make install ; make install2)
1.21      maekawa    13:
                     14: all-gnuplot:
                     15:        (cd gnuplot ; make all ; make install)
                     16:
1.27      maekawa    17: all-oxmath:
                     18:        @if test -d /usr/local/mathematica ; then \
                     19:                (cd ox_math ; make) ; \
                     20:        else \
                     21:                echo -n "Warning: Mathematica is not found. " ; \
                     22:                echo "ox_math will not be compiled." ; \
                     23:        fi
                     24:
1.23      maekawa    25: all-openmath:
                     26:        @if ../misc/which.pl -s javac ; then \
                     27:                (cd OpenMath ; make) ; \
                     28:        else \
1.24      maekawa    29:                echo -n "Warning: javac (java compiler) is not found " ; \
                     30:                echo "in your search path. OpenMath will not be compiled." ; \
1.23      maekawa    31:        fi
                     32:
1.25      maekawa    33: all-pari:
                     34:        (cd pari ; make install ; make install-lib-sta)
                     35:        (cd pari ; ranlib ../../OpenXM/lib/libpari.a)
                     36:
1.22      maekawa    37: all-phc:
                     38:        (cd phc ; make all ; make install)
                     39:
                     40: all-tigers:
1.11      takayama   41:        (cd Ti ; make all ; make install)
1.22      maekawa    42:
1.4       tam        43: all4 :
1.11      takayama   44:        (cd k097 ; make all ; make install)
1.1       maekawa    45:
                     46: clean :
                     47:        /bin/rm -rf ../*~  *~
1.11      takayama   48:        (cd kan96xx ; make clean )
1.1       maekawa    49:        (cd kxx ; make clean)
                     50:        (cd Ti ; make clean)
1.19      maekawa    51:        (cd gnuplot ; make clean )
1.1       maekawa    52:        (cd phc ; make clean )
1.11      takayama   53:        (cd k097 ; make clean )
1.15      takayama   54:        (cd asir2000 ; make clean )
1.11      takayama   55: #      (cd ox_math ; make clean )
                     56:        /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
                     57:
                     58:
                     59: distclean :
                     60:        (cd kan96xx ; make distclean )
                     61:        (cd kxx ; make clean)
                     62:        (cd Ti ; make clean)
1.19      maekawa    63:        (cd gnuplot ; make clean )
1.11      takayama   64:        (cd phc ; make clean )
                     65:        (cd k097 ; make clean )
1.15      takayama   66:        (cd asir2000 ; make clean )
1.11      takayama   67: #      (cd ox_math ; make clean )
                     68:        /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
                     69:
1.1       maekawa    70:
1.2       takayama   71: configure :
1.11      takayama   72:        ./make-links
1.2       takayama   73:        (cd ../bin ; ./configure2 )
1.11      takayama   74:        (cd kxx ; make configure )
1.2       takayama   75:        (cd kan96xx ; make configure )
1.16      takayama   76:        (cd pari ; ./Configure --prefix=../../../OpenXM)
1.15      takayama   77:        (cd asir2000; ./configure)
1.14      ohara      78:        (cd ox_math; ./configure)
1.1       maekawa    79:
                     80:
                     81:

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