[Nice-commit] Nice Makefile,1.130,1.131
Brought to you by:
bonniot
From: <bo...@us...> - 2003-11-12 18:01:59
|
Update of /cvsroot/nice/Nice In directory sc8-pr-cvs1:/tmp/cvs-serv32449 Modified Files: Makefile Log Message: Added target 'make universe', which uses a produced compiler to restart the bootstrap from the start. If that second one succeeds, we can be pretty confident about the ability of the compiler to bootstrap itself. Index: Makefile =================================================================== RCS file: /cvsroot/nice/Nice/Makefile,v retrieving revision 1.130 retrieving revision 1.131 diff -C2 -d -r1.130 -r1.131 *** Makefile 12 Sep 2003 18:04:43 -0000 1.130 --- Makefile 12 Nov 2003 18:01:54 -0000 1.131 *************** *** 48,51 **** --- 48,57 ---- world: fixpoint check test + # The bootstrap at the end of the universe ;-) + universe: + $(MAKE) complete + cp share/java/nice.jar external/nice-bootstrap.jar + $(MAKE) world + src/nice/tools/compiler/console.jar: $(MAKE) complete |