=================================================================== RCS file: /home/cvs/OpenXM/src/kan96xx/Attic/Makefile,v retrieving revision 1.31 retrieving revision 1.34 diff -u -p -r1.31 -r1.34 --- OpenXM/src/kan96xx/Attic/Makefile 2003/09/08 01:22:56 1.31 +++ OpenXM/src/kan96xx/Attic/Makefile 2003/11/24 23:16:02 1.34 @@ -1,4 +1,4 @@ -# $OpenXM: OpenXM/src/kan96xx/Makefile,v 1.30 2003/09/02 03:31:12 takayama Exp $ +# $OpenXM: OpenXM/src/kan96xx/Makefile,v 1.33 2003/11/24 08:16:13 takayama Exp $ # # Building kan96xx depends on # install-gmp, install-gc [install-asir-gc] @@ -12,11 +12,13 @@ RM=rm all : all-sm1 all-kanlib.a -all-sm1 : all-plugin +all-sm1 : all-plugin all-trans (cd Kan; make all) all-plugin : configure (cd plugin ; make all) -all-kanlib.a : all-plugin +all-trans: configure + (cd trans ; make all) +all-kanlib.a : all-plugin all-trans (cd Kan ; make kanlib.a) ### When you make sm1 without the garbage collector, type in make sm1.nogc @@ -28,6 +30,7 @@ configure: configure_symbolic_links then \ (cd Kan; sh ./configure) ; \ (cd plugin; sh ./configure) ; \ + (cd trans; sh ./configure) ; \ fi @touch ./.configure_done configure_symbolic_links : @@ -63,8 +66,14 @@ clean : clean-done ${RM} -f ./.*done (cd Kan; make clean) (cd plugin; make clean) + (cd trans; make clean) (cd Doc; make clean) ${RM} -f sm1 gmp gc Doc/var.sm1 lib +distclean: clean + -(cd Kan ; make distclean) + -(cd plugin ; make distclean) + -(cd trans ; make distclean) + -(cd Doc ; make distclean)