=================================================================== RCS file: /home/cvs/OpenXM/src/Makefile,v retrieving revision 1.57 retrieving revision 1.60 diff -u -p -r1.57 -r1.60 --- OpenXM/src/Makefile 2000/01/15 22:19:06 1.57 +++ OpenXM/src/Makefile 2000/01/17 10:41:50 1.60 @@ -1,4 +1,4 @@ -## $OpenXM: OpenXM/src/Makefile,v 1.56 2000/01/09 20:19:40 maekawa Exp $ +## $OpenXM: OpenXM/src/Makefile,v 1.59 2000/01/16 22:20:31 takayama Exp $ OPENXM_CONTRIB=../../OpenXM_contrib LIBDIR=../lib @@ -24,7 +24,7 @@ all-kxx: configure-kxx all-openmath: @if ../misc/which.pl -s javac ; then \ - (cd OpenMath ; make) ; \ + (cd OpenMath ; make all) ; \ else \ echo -n "Warning: javac (java compiler) is not found " ; \ echo "in your search path. OpenMath will not be compiled." ; \ @@ -49,7 +49,7 @@ all-tigers: install: install-asir install-gnuplot install-k097 install-kan96xx \ install-kxx install-openmath install-oxmath install-pari \ - install-phc install-tigers + install-phc install-tigers install-asir-contrib install-asir: all-asir (cd asir2000 ; make install) @@ -64,9 +64,10 @@ install-kan96xx: all-kan96xx (cd kan96xx ; make install) install-kxx: all-kxx - (cd kxx ; make install2) + (cd kxx ; make install) install-openmath: all-openmath + (cd OpenMath ; make install) install-oxmath: all-oxmath @@ -79,22 +80,28 @@ install-phc: all-phc install-tigers: all-tigers (cd tigers ; make install) +install-asir-contrib: install-asir + (cd asir-contrib ; make install) + clean: (cd asir2000 ; make clean) (cd gnuplot ; make clean) (cd k097 ; make clean) (cd kan96xx ; make clean) (cd kxx ; make clean) + (cd OpenMath ; make clean) # (cd ox_math ; make clean) (cd pari ; make clean) (cd phc ; make clean) (cd tigers ; make clean) + (cd asir-contrib ; make clean) distclean: clean (cd $(BINDIR) ; make distclean) (cd asir2000 ; make distclean) (cd gnuplot ; make distclean) (cd kan96xx ; make distclean) + (cd OpenMath ; make distclean) (cd pari ; make distclean) (cd phc ; make distclean) (cd tigers ; make distclean)