Annotation of OpenXM/src/Makefile, Revision 1.36
1.2 takayama 1: ## Type in make configure and make all to build all
1.36 ! maekawa 2: ## $OpenXM: OpenXM/src/Makefile,v 1.35 2000/01/08 16:38:32 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.25 maekawa 38: all-pari:
1.36 ! maekawa 39: (cd pari ; make install)
! 40: (cd pari ; ranlib ../../../OpenXM/lib/libpari.a)
1.25 maekawa 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.36 ! maekawa 49: (cd kan96xx ; make clean)
1.1 maekawa 50: (cd kxx ; make clean)
1.34 maekawa 51: (cd tigers ; make clean)
1.35 maekawa 52: (cd gnuplot ; make clean)
1.36 ! maekawa 53: (cd phc ; make clean)
! 54: (cd k097 ; make clean)
! 55: (cd asir2000 ; make clean)
! 56: # (cd ox_math ; make clean)
1.11 takayama 57: /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
58:
1.29 maekawa 59: distclean:
1.36 ! maekawa 60: (cd kan96xx ; make distclean)
1.11 takayama 61: (cd kxx ; make clean)
1.34 maekawa 62: (cd tigers ; make clean)
1.35 maekawa 63: (cd gnuplot ; make distclean)
1.11 takayama 64: (cd phc ; make clean )
65: (cd k097 ; make clean )
1.36 ! maekawa 66: (cd asir2000 ; make clean)
! 67: # (cd ox_math ; make clean)
1.11 takayama 68: /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
69:
1.29 maekawa 70: configure:
1.11 takayama 71: ./make-links
1.36 ! maekawa 72: (cd ../bin ; ./configure2)
! 73: (cd kxx ; make configure)
! 74: (cd kan96xx ; make configure)
1.35 maekawa 75: (cd gnuplot ; make configure)
1.36 ! maekawa 76: (cd pari ; make configure)
! 77: (cd asir2000; ./configure ; xmkmf -a ; make depend)
1.14 ohara 78: (cd ox_math; ./configure)
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>