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