Annotation of OpenXM/src/Makefile, Revision 1.38
1.2 takayama 1: ## Type in make configure and make all to build all
1.38 ! maekawa 2: ## $OpenXM: OpenXM/src/Makefile,v 1.37 2000/01/08 17:56:57 maekawa Exp $
1.33 maekawa 3:
1.36 maekawa 4: all: configure all-kan96xx all-kxx all-tigers all-phc all-k097 \
1.33 maekawa 5: all-pari all-asir all-gnuplot all-openmath all-oxmath
1.26 maekawa 6:
7: all-asir:
1.36 maekawa 8: (cd asir2000 ; 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.37 maekawa 38: all-pari: configure-pari
39: (cd pari ; make all)
1.25 maekawa 40:
1.22 maekawa 41: all-phc:
42: (cd phc ; make all ; make install)
43:
44: all-tigers:
1.34 maekawa 45: (cd tigers ; make all ; make install)
1.1 maekawa 46:
1.37 maekawa 47: install: install-pari
48:
49: install-pari: all-pari
50: (cd pari ; make install ; ranlib ../../../OpenXM/lib/libpari.a)
51:
1.29 maekawa 52: clean:
1.36 maekawa 53: (cd kan96xx ; make clean)
1.1 maekawa 54: (cd kxx ; make clean)
1.34 maekawa 55: (cd tigers ; make clean)
1.35 maekawa 56: (cd gnuplot ; make clean)
1.38 ! maekawa 57: (cd pari ; make clean)
1.36 maekawa 58: (cd phc ; make clean)
59: (cd k097 ; make clean)
60: (cd asir2000 ; make clean)
61: # (cd ox_math ; make clean)
1.11 takayama 62: /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
63:
1.29 maekawa 64: distclean:
1.36 maekawa 65: (cd kan96xx ; make distclean)
1.11 takayama 66: (cd kxx ; make clean)
1.34 maekawa 67: (cd tigers ; make clean)
1.35 maekawa 68: (cd gnuplot ; make distclean)
1.38 ! maekawa 69: (cd pari ; make distclean)
1.11 takayama 70: (cd phc ; make clean )
71: (cd k097 ; make clean )
1.36 maekawa 72: (cd asir2000 ; make clean)
73: # (cd ox_math ; make clean)
1.11 takayama 74: /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
75:
1.37 maekawa 76: configure: configure-links configure-asir
1.36 maekawa 77: (cd ../bin ; ./configure2)
78: (cd kxx ; make configure)
79: (cd kan96xx ; make configure)
1.35 maekawa 80: (cd gnuplot ; make configure)
1.37 maekawa 81: (cd ox_math; ./configure)
82:
83: configure-asir: install-pari
84: (cd asir2000; ./configure ; xmkmf -a ; make depend)
85:
86: configure-links:
87: ./make-links
88:
89: configure-pari:
1.36 maekawa 90: (cd pari ; make configure)
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>