[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / OpenXM / src

Diff for /OpenXM/src/Makefile between version 1.85 and 1.147

version 1.85, 2000/03/06 14:58:00 version 1.147, 2004/12/14 17:11:25
Line 1 
Line 1 
 ## $OpenXM: OpenXM/src/Makefile,v 1.84 2000/03/06 04:30:39 takayama Exp $  ## $OpenXM: OpenXM/src/Makefile,v 1.146 2004/12/07 15:26:41 ohara Exp $
   
 OPENXM_CONTRIB=../../OpenXM_contrib  OpenXM_HOME=..
 OPENXM_CONTRIB2=../../OpenXM_contrib2  OpenXM_contrib2=../../OpenXM_contrib2
 LIBDIR=../lib  LIBDIR=../lib
 BINDIR=../bin  BINDIR=../bin
   DOCDIR=../doc
 RCDIR=../rc  RCDIR=../rc
 COPYRIGHTDIR=../Copyright  COPYRIGHTDIR=../Copyright
   
 all: configure all-gc all-gmp all-asir all-gnuplot all-k097 all-kan96xx \  all: all-util all-gc all-gmp all-asir all-gnuplot all-k097 all-kan96xx \
      all-kxx all-pari all-phc all-openmath all-oxmath all-tigers       all-kxx all-pari all-phc all-openmath all-oxmath all-tigers all-fep
   
 all-gc:  all-gc: install-util
         @if test ! -f gc/.gc_make_done ; \          (cd gc; ${MAKE} all)
         then \  
                 (cd gc ; make all) ; \  
         fi  
         @touch gc/.gc_make_done  
   
 all-gmp: configure-gmp  all-gmp: configure-gmp
         if test -f /usr/lib/libgmp.a ; \          (cd gmp; ${MAKE} all)
         then \  
           echo "Using /usr/lib/libgmp.a" ; \  
           /bin/rm -rf gmp/libgmp.a ; \  
           ln -s /usr/lib/libgmp.a gmp/libgmp.a ; \  
         else \  
          (if test ! -f .gmp_make_done ; then cd gmp ; make ; touch .gmp_make_done ; fi) ; \  
         fi  
   
 all-asir: configure-asir  all-oxtoolkit: configure-oxtoolkit install-gmp install-gc install-util install-kan96xx
         @if test -d $(OPENXM_CONTRIB2) ; then \          (cd ox_toolkit; ${MAKE} all)
                 (cd asir2000 ; make all) ; \  
         else \  
                 echo -n "Warning: Asir source is not found. " ; \  
                 echo "asir will not be compiled." ; \  
         fi  
   
   all-oxc: configure-oxc install-oxtoolkit
           (cd oxc; ${MAKE} all)
   
   all-asir: configure-asir install-pari
           (cd asir2000; ${MAKE} all)
   
 all-gnuplot: configure-gnuplot  all-gnuplot: configure-gnuplot
         (cd gnuplot ; make all)          -(cd gnuplot; ${MAKE} all)
   
 all-k097: configure-k097 all-kan96xx  all-k097: configure-k097 all-kan96xx all-kxx install-oxtags
         (cd k097 ; make all)          (cd k097; ${MAKE} all)
   
 all-kan96xx: configure-kan96xx install-gc install-gmp  all-kan96xx: configure-kan96xx install-gc install-gmp install-util install-oxtags
         (cd kan96xx ; make all)          (cd kan96xx; ${MAKE} all)
   
 all-kxx: configure-kxx all-kan96xx  all-kxx: configure-kxx all-kan96xx install-util install-oxtags
         (cd kxx ; make all)          (cd kxx; ${MAKE} all)
   
 all-openmath:  all-openmath:
         @if ../misc/which.pl -s javac ; then \          -@if ../misc/which.pl -s javac; then \
                 (cd OpenMath ; make all) ; \                  (cd OpenMath; ${MAKE} all); \
         else \          else \
                 echo -n "Warning: javac (java compiler) is not found " ; \                  echo -n "Warning: javac (java compiler) is not found "; \
                 echo "in your search path. OpenMath will not be compiled." ; \                  echo "in your search path. OpenMath will not be compiled."; \
         fi          fi
   
 all-oxmath: configure-oxmath  all-oxmath: configure-oxmath install-oxtoolkit install-gc
         @if test -d /usr/local/mathematica ; then \          -@if test -d /usr/local/mathematica; then \
                 (cd ox_math ; make) ; \                  (cd ox_math; ${MAKE} all); \
         else \          else \
                 echo -n "Warning: Mathematica is not found. " ; \                  echo -n "Warning: Mathematica is not found. "; \
                 echo "ox_math will not be compiled." ; \                  echo "ox_math will not be compiled."; \
         fi          fi
   
 all-pari: configure-pari  all-pari: configure-pari
         (cd pari ; make all)          (cd pari; ${MAKE} all)
   
 all-phc:  all-phc:
         (cd phc ; make all)          (cd phc; ${MAKE} all)
   
 all-tigers:  all-tigers:
         (cd tigers ; make all)          (cd tigers; ${MAKE} all)
   
 all-misc :  all-fep:
         (cd ../rc ; make repl)          -(cd ${OpenXM_contrib2}/fep; ${MAKE} all)
         (cd ../doc ; make all-install)  
         (cd ../doc ; make all-spec)  
   
 install: install-asir install-gnuplot install-k097 install-kan96xx \  
   all-misc: install-util
           (cd ${RCDIR}; ${MAKE} repl)
           (cd ../doc; ${MAKE} all-install all-spec)
   
   all-rc:
           (cd ${RCDIR}; ${MAKE})
   all-util: configure-util
           (cd util; ${MAKE} all)
   
   install: install-oxtags install-util install-asir install-gnuplot \
            install-k097 install-kan96xx \
          install-kxx install-openmath install-oxmath install-pari \           install-kxx install-openmath install-oxmath install-pari \
          install-phc install-tigers install-asir-doc install-asir-contrib \           install-phc install-tigers install-asir-doc install-asir-contrib \
          install-misc           install-misc install-fep install-uuencoded
   
   install-oxtags:
           (cd ../doc/OpenXM-web; ${MAKE} install-exec)
   
 install-gc : all-gc  install-util: all-util
         -@if test ! -f gc/.gc_installed ; \          (cd util; ${MAKE} install)
         then \  
                 mkdir ../lib ; \  
                 cp gc/gc.a ../lib/libgc.a ; \  
         fi  
         @touch gc/.gc_installed  
   
   install-gc: all-gc
           (cd gc; ${MAKE} install)
   
 install-gmp : all-gmp  
         -@if test ! -f gmp/.gmp_installed ; \  
         then \  
                 mkdir ../lib ; \  
                 cp gmp/libgmp.a ../lib ; \  
                 mkdir ../include ; \  
                 cp gmp/gmp.h ../include ; \  
         fi  
         @touch gmp/.gmp_installed  
   
   install-gmp: all-gmp
           (cd gmp; ${MAKE} install)
   
 install-asir: all-asir  install-asir: all-asir
         @if test -d $(OPENXM_CONTRIB2) ; then \          (cd asir2000; ${MAKE} install)
                 (cd asir2000 ; make install) ; \  
         else \  
                 echo -n "Warning: Asir source is not found. " ; \  
                 echo "asir will not be installed." ; \  
         fi  
   
 install-gnuplot: all-gnuplot  install-gnuplot: all-gnuplot
         (cd gnuplot ; make install)          -(cd gnuplot; ${MAKE} install)
   
 install-k097: all-k097  install-k097:  install-kxx all-k097 install-oxc
         (cd k097 ; make install)          (cd k097; ${MAKE} install)
   
 install-kan96xx: all-kan96xx  install-kan96xx: all-kan96xx
         (cd kan96xx ; make install)          (cd kan96xx; ${MAKE} install)
   
 install-kxx: all-kxx  install-kxx: all-kxx
         (cd kxx ; make install)          (cd kxx; ${MAKE} install)
   
 install-openmath: all-openmath  install-openmath: all-openmath
         @if ../misc/which.pl -s javac ; then \          -@if ../misc/which.pl -s javac; then \
                 (cd OpenMath ; make install) ; \                  (cd OpenMath; ${MAKE} install); \
         else \          else \
                 echo -n "Warning: javac (java compiler) is not found " ; \                  echo -n "Warning: javac (java compiler) is not found "; \
                 echo "in your search path. OpenMath will not be installed." ; \                  echo "in your search path. OpenMath will not be installed."; \
         fi          fi
   
   install-oxtoolkit: all-oxtoolkit
           (cd ox_toolkit; ${MAKE} install)
   
 install-oxmath: all-oxmath  install-oxc: all-oxc
         @if test -d /usr/local/mathematica ; then \          (cd oxc; ${MAKE} install)
                 (cd ox_math ; make install) ; \  
   install-oxmath: all-oxmath
           -@if test -d /usr/local/mathematica; then \
                   (cd ox_math; ${MAKE} install); \
         else \          else \
                 echo -n "Warning: Mathematica is not found. " ; \                  echo -n "Warning: Mathematica is not found. "; \
                 echo "ox_math will not be installed." ; \                  echo "ox_math will not be installed."; \
         fi          fi
         -(cd ox_math/documents ; make install)          -(cd ox_math/documents; ${MAKE} install)
         -(cd ox_math/lib ; make install)          -(cd ox_math/lib; ${MAKE} install)
   
 install-pari: all-pari  install-pari: all-pari
         (cd pari ; make install)          (cd pari; ${MAKE} install)
   
 install-phc: all-phc  install-phc: all-phc
         (cd phc ; make install)          (cd phc; ${MAKE} install)
   
 install-tigers: all-tigers  install-tigers: all-tigers
         (cd tigers ; make install)          (cd tigers; ${MAKE} install)
   
 install-asir-contrib: install-asir install-kxx  install-asir-contrib: configure-asir-contrib install-asir install-util \
         (cd asir-contrib ; make install)                        install-asir-contrib-oxservers
           (cd asir-contrib; ${MAKE} install)
   
 install-asir-doc: install-asir  install-asir-contrib-oxservers: install-asir install-util \
         (cd asir-doc ; make install)                  install-k097 install-kxx install-openmath install-oxmath \
                   install-phc install-tigers install-uuencoded install-gnuplot
   
   install-asir-doc: configure-asir-doc
           -(cd asir-doc; ${MAKE} install)
   
 install-misc:  install-misc:
         (cd ../rc ; make install.man)          (cd ${RCDIR}; ${MAKE} install-man)
   
   install-fep: all-fep
           -(cd ${OpenXM_contrib2}/fep; ${MAKE} PREFIX=../../OpenXM install)
   
   install-rc: all-rc
           (cd ${RCDIR}; ${MAKE} install)
   
   install-uuencoded:
           (cd uuencoded; ${MAKE} install)
   
   install-asir-port:
           (cd asir-port; ${MAKE} install)
   
 clean:  clean:
         -rm $(OPENXM_CONTRIB)/gmp/.gmp_*          -rm ./.configure-links-done
         -rm $(OPENXM_CONTRIB)/gc/.gc_*          -@for i in OpenMath asir-contrib asir-doc asir2000 gc gmp gnuplot \
         -(cd $(OPENXM_CONTRIB)/gmp ; make clean)                     k097 kan96xx kxx ox_math ox_toolkit oxc pari phc tigers \
         (cd $(OPENXM_CONTRIB)/gc ; make clean ; /bin/rm -f *.a)                     util ${OpenXM_contrib2}/fep ; do \
         (cd asir2000 ; make clean)                  (cd $i; ${MAKE} clean); \
         (cd gnuplot ; make clean)          done
         (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  distclean: clean
         (cd $(BINDIR) ; make distclean)          -@for i in OpenMath asir2000 gc gmp gnuplot kan96xx kxx ox_math \
         -(cd $(OPENXM_CONTRIB)/gmp ; make distclean)                     ox_toolkit oxc pari phc tigers uuencoded ; do \
         (cd $(OPENXM_CONTRIB)/gc ; make clean ; /bin/rm -f *.a)                  (cd $i; ${MAKE} distclean); \
         (cd asir2000 ; make distclean)          done
         (cd gnuplot ; make distclean)          -(cd ${BINDIR} && rm -f  d0 k0 ox ox_sm1 oxlog oxweave sm1)
         (cd kan96xx ; make distclean)          -(cd ${LIBDIR} && rm -rf k097 sm1)
         -(cd kxx ; make distclean)  
         (cd OpenMath ; make distclean)  
         (cd pari ; make distclean)  
         (cd phc ; make distclean)  
         (cd tigers ; make distclean)  
         rm -rf $(BINDIR)/d0 $(BINDIR)/k0 $(BINDIR)/ox $(BINDIR)/ox_sm1 \  
                $(BINDIR)/oxlog $(BINDIR)/oxweave $(BINDIR)/sm1 \  
                $(LIBDIR)/k097 $(LIBDIR)/sm1 SSkan bin gc gmp  
   
 configure: configure-links configure-bin configure-asir \  configure: configure-util configure-asir \
            configure-gnuplot \             configure-gnuplot \
            configure-k097 configure-kan96xx configure-kxx configure-oxmath \             configure-k097 configure-kan96xx configure-kxx configure-oxmath \
            configure-pari configure-gmp             configure-pari configure-gmp configure-asir-doc configure-asir-contrib
   
 configure-gmp: configure-links  configure-util:
         @if test -f gmp/.gmp_configured ; \          (cd util; ./make-configure)
         then \  
           echo "MESSAGE(kan96xx/Makefile): gmp is already configured. (.gmp_configured) " ;  \  
         else \  
           (cd gmp ; ./configure ; touch .gmp_configured) ; \  
         fi  
   
 configure-asir:  configure-gmp: install-util
         @if test -d $(OPENXM_CONTRIB2) ; then \          (cd gmp; ${MAKE} configure)
                 (cd asir2000 ; make configure) ; \  
         else \  
                 echo -n "Warning: Asir source is not found. " ; \  
                 echo "asir will not be compiled." ; \  
         fi  
   
 configure-bin:  configure-asir:
         (cd $(BINDIR) ; make configure)          (cd asir2000; ${MAKE} configure)
   
   configure-asir-contrib:
           -(cd asir-contrib; ./make-configure)
   
   configure-asir-doc:
           -(cd asir-doc; ./make-configure)
   
 configure-gnuplot:  configure-gnuplot:
         (cd gnuplot ; make configure)          -(cd gnuplot; ${MAKE} configure)
   
 configure-k097:  configure-k097:
           (cd k097; ./make-configure)
   
 configure-kan96xx:  configure-kan96xx:
         (cd kan96xx ; make configure)          (cd kan96xx; ./make-configure)
   
 configure-kxx:  configure-kxx:
         ( cd kxx ; ./make-configure)          (cd kxx; ./make-configure)
   
 configure-links:  configure-oxtoolkit:
         rm -f -r $(LIBDIR)/k097 $(LIBDIR)/sm1 SSkan bin gc gmp          (cd ox_toolkit; ./make-configure)
         (cd $(LIBDIR) ; ln -f -s ../src/k097 k097)  
         (cd $(LIBDIR) ; ln -f -s ../src/kan96xx/Doc sm1)  
         ln -f -s kan96xx SSkan  
         ln -f -s $(BINDIR) bin  
         ln -f -s $(OPENXM_CONTRIB)/gc gc  
         ln -f -s $(OPENXM_CONTRIB)/gmp gmp  
   
   configure-oxc:
           (cd oxc; ./make-configure)
   
 configure-oxmath:  configure-oxmath:
         (cd ox_math; ./make-configure)          -@if test -d /usr/local/mathematica; then \
                   (cd ox_math; ./make-configure); \
           else \
                   echo -n "Warning: Mathematica is not found. "; \
                   echo "ox_math will not be compiled."; \
           fi
   
 configure-pari:  configure-pari: install-util
         (cd pari ; make configure)          (cd pari; ${MAKE} configure)
   
 generate-source-distribution : generate-source-distribution-kxx \  clean-rc:
                                generate-source-distribution-ox_toolkit          (cd $(RCDIR); ${MAKE} clean)
   
 generate-source-distribution-kxx :  all-Copyright:
         (cd kxx ; rm -f .configure_done Makefile ; autoconf)          (cd $(COPYRIGHTDIR); ${MAKE} all)
 generate-source-distribution-ox_toolkit :  
         (cd ox_toolkit ; rm -f Makefile ; autoconf)  
   
 clean-rc :  install-all-asir-lib:
         (cd $(RCDIR) ; make clean )          (cd asir2000; ${MAKE} install-lib-small)
 all-Copyright :  
         (cd $(COPYRIGHTDIR) ; make copy-copyright )  
   
 post-install-correction: install  install-document: install-document-kan96xx install-document-asir-contrib
         (cd ../bin ; rm -f asir ; ln -s ./ox_asir asir)  
         (cd ../lib/asir ; rm -f ox_asir ox_launch ox_plot help ; ln -s ./asir ox_asir ; ln -s ./asir ox_launch ; ln -s ./asir ox_plot ; ln -s ./help-eg help)  
         (cd ../rc ; make install.man)  
   
 binary-dist : all-Copyright clean-rc all all-misc post-install-correction  install-document-kan96xx: install-kan96xx
           (cd kan96xx; ${MAKE} install-document)
   
   install-document-asir-contrib: install-asir-contrib
           (cd asir-contrib; ${MAKE} install-document)
   
   ## Targets for debugging
   install-for-debug:
           (cd kan96xx; ${MAKE} install-for-debug)
           (cd kxx; ${MAKE} install-for-debug)
           (cd k097; ${MAKE} install-for-debug)
           (cd ${BINDIR}; rm -f asir; ln -s ../../OpenXM_contrib2/asir2000/asir .)

Legend:
Removed from v.1.85  
changed lines
  Added in v.1.147

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>