=================================================================== RCS file: /home/cvs/OpenXM/src/Makefile,v retrieving revision 1.58 retrieving revision 1.65 diff -u -p -r1.58 -r1.65 --- OpenXM/src/Makefile 2000/01/16 01:35:49 1.58 +++ OpenXM/src/Makefile 2000/01/19 06:06:30 1.65 @@ -1,4 +1,4 @@ -## $OpenXM: OpenXM/src/Makefile,v 1.57 2000/01/15 22:19:06 takayama Exp $ +## $OpenXM: OpenXM/src/Makefile,v 1.64 2000/01/19 03:03:34 noro 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-doc install-asir-contrib install-asir: all-asir (cd asir2000 ; make install) @@ -67,6 +67,7 @@ install-kxx: all-kxx (cd kxx ; make install) install-openmath: all-openmath + (cd OpenMath ; make install) install-oxmath: all-oxmath @@ -79,22 +80,32 @@ install-phc: all-phc install-tigers: all-tigers (cd tigers ; make install) +install-asir-contrib: install-asir + (cd asir-contrib ; make install) + +install-asir-doc: install-asir + (cd asir-doc ; 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-doc ; 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) @@ -102,7 +113,8 @@ distclean: clean $(BINDIR)/oxlog $(BINDIR)/oxweave $(BINDIR)/sm1 \ $(LIBDIR)/k097 $(LIBDIR)/sm1 SSkan bin gc gmp -configure: configure-links configure-bin configure-asir configure-gnuplot \ +configure: configure-links configure-bin configure-asir \ + configure-gnuplot \ configure-k097 configure-kan96xx configure-kxx configure-oxmath \ configure-pari @@ -124,7 +136,7 @@ configure-kxx: install-kan96xx (cd kxx ; make configure) configure-links: - rm -f $(LIBDIR)/k097 $(LIBDIR)/sm1 SSkan bin gc gmp + rm -f -r $(LIBDIR)/k097 $(LIBDIR)/sm1 SSkan bin gc gmp (cd $(LIBDIR) ; ln -f -s ../src/k097 k097) (cd $(LIBDIR) ; ln -f -s ../src/kan96xx/Doc sm1) ln -f -s kan96xx SSkan @@ -137,3 +149,4 @@ configure-oxmath: configure-pari: (cd pari ; make configure) +