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