Annotation of OpenXM/src/Makefile, Revision 1.29
1.2 takayama 1: ## Type in make configure and make all to build all
1.29 ! maekawa 2: ## $OpenXM: OpenXM/src/Makefile,v 1.28 2000/01/07 19:36:51 maekawa Exp $
! 3: all: all1 all-tigers all-phc all4 all-pari all-asir all-gnuplot all-openmath all-oxmath
1.1 maekawa 4:
1.29 ! maekawa 5: all1:
1.1 maekawa 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.29 ! maekawa 43: all4:
1.11 takayama 44: (cd k097 ; 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>