Annotation of OpenXM/src/Makefile, Revision 1.37
1.2 takayama 1: ## Type in make configure and make all to build all
1.37 ! maekawa 2: ## $OpenXM: OpenXM/src/Makefile,v 1.36 2000/01/08 17:17:49 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.36 maekawa 57: (cd phc ; make clean)
58: (cd k097 ; make clean)
59: (cd asir2000 ; make clean)
60: # (cd ox_math ; make clean)
1.11 takayama 61: /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
62:
1.29 maekawa 63: distclean:
1.36 maekawa 64: (cd kan96xx ; make distclean)
1.11 takayama 65: (cd kxx ; make clean)
1.34 maekawa 66: (cd tigers ; make clean)
1.35 maekawa 67: (cd gnuplot ; make distclean)
1.11 takayama 68: (cd phc ; make clean )
69: (cd k097 ; make clean )
1.36 maekawa 70: (cd asir2000 ; make clean)
71: # (cd ox_math ; make clean)
1.11 takayama 72: /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
73:
1.37 ! maekawa 74: configure: configure-links configure-asir
1.36 maekawa 75: (cd ../bin ; ./configure2)
76: (cd kxx ; make configure)
77: (cd kan96xx ; make configure)
1.35 maekawa 78: (cd gnuplot ; make configure)
1.37 ! maekawa 79: (cd ox_math; ./configure)
! 80:
! 81: configure-asir: install-pari
! 82: (cd asir2000; ./configure ; xmkmf -a ; make depend)
! 83:
! 84: configure-links:
! 85: ./make-links
! 86:
! 87: configure-pari:
1.36 maekawa 88: (cd pari ; make configure)
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>