=================================================================== RCS file: /home/cvs/OpenXM/src/Makefile,v retrieving revision 1.149 retrieving revision 1.150 diff -u -p -r1.149 -r1.150 --- OpenXM/src/Makefile 2005/07/19 03:37:49 1.149 +++ OpenXM/src/Makefile 2005/11/10 05:56:50 1.150 @@ -1,4 +1,4 @@ -## $OpenXM: OpenXM/src/Makefile,v 1.148 2004/12/16 16:19:15 ohara Exp $ +## $OpenXM: OpenXM/src/Makefile,v 1.149 2005/07/19 03:37:49 takayama Exp $ OpenXM_HOME=.. OpenXM_contrib2=../../OpenXM_contrib2 @@ -9,7 +9,7 @@ RCDIR=../rc COPYRIGHTDIR=../Copyright 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-fep + all-kxx all-pari all-phc all-openmath all-oxmath all-tigers all-fep all-phcpack all-gc: install-util (cd gc; ${MAKE} all) @@ -60,6 +60,11 @@ all-pari: configure-pari all-phc: (cd phc; ${MAKE} all) +all-phcpack: + -@if [ "`which gnatmake`" ]; then \ + (cd phcpack; ${MAKE} all) ; \ + fi + all-tigers: (cd tigers; ${MAKE} all) @@ -80,7 +85,7 @@ install: install-oxtags install-util install-asir inst install-k097 install-kan96xx \ install-kxx install-openmath install-oxmath install-pari \ install-phc install-tigers install-asir-doc install-asir-contrib \ - install-misc install-fep install-uuencoded + install-misc install-fep install-phcpack install-oxtags: (cd ../doc/OpenXM-web; ${MAKE} install-exec) @@ -140,6 +145,11 @@ install-pari: all-pari install-phc: all-phc (cd phc; ${MAKE} install) +install-phcpack: all-phcpack + -@if [ "`which gnatmake`" ]; then \ + (cd phcpack; ${MAKE} install) ; \ + fi + install-tigers: all-tigers (cd tigers; ${MAKE} install) @@ -149,7 +159,7 @@ install-asir-contrib: configure-asir-contrib install-a install-asir-contrib-oxservers: install-asir install-util \ install-k097 install-kxx install-openmath install-oxmath \ - install-phc install-tigers install-uuencoded install-gnuplot + install-phc install-tigers install-gnuplot install-asir-doc: configure-asir-doc -(cd asir-doc; ${MAKE} install) @@ -163,23 +173,20 @@ install-fep: all-fep install-rc: all-rc (cd ${RCDIR}; ${MAKE} install) -install-uuencoded: - (cd uuencoded; ${MAKE} install) - install-asir-port: (cd asir-port; ${MAKE} install) clean: -rm ./.configure-links-done -@for i in OpenMath asir-contrib asir-doc asir2000 gc gmp gnuplot \ - k097 kan96xx kxx ox_math ox_toolkit oxc pari phc tigers \ + k097 kan96xx kxx ox_math ox_toolkit oxc pari phc phcpack tigers \ util ${OpenXM_contrib2}/fep ; do \ (cd $$i; ${MAKE} clean); \ done distclean: clean -@for i in OpenMath asir2000 gc gmp gnuplot kan96xx kxx ox_math \ - ox_toolkit oxc pari phc tigers uuencoded ; do \ + ox_toolkit oxc pari phc phcpack tigers ; do \ (cd $$i; ${MAKE} distclean); \ done -(cd ${BINDIR} && rm -f d0 k0 ox ox_sm1 oxlog oxweave sm1)