[Nice-commit] Nice Makefile,1.135,1.136
Brought to you by:
bonniot
From: <bo...@us...> - 2004-02-14 02:05:15
|
Update of /cvsroot/nice/Nice In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31870 Modified Files: Makefile Log Message: Build nicedoc and the nicedoc Ant task. Index: Makefile =================================================================== RCS file: /cvsroot/nice/Nice/Makefile,v retrieving revision 1.135 retrieving revision 1.136 diff -C2 -d -r1.135 -r1.136 *** Makefile 11 Feb 2004 14:53:55 -0000 1.135 --- Makefile 14 Feb 2004 01:59:05 -0000 1.136 *************** *** 44,49 **** all: src/nice/tools/compiler/console.jar compiler2 archive2 ! stable: clean bootstrap compiler1 ant testengine archiveOld ! complete: stable compiler2 archive2 fixpoint: complete compiler3 archive3 world: fixpoint check test --- 44,49 ---- all: src/nice/tools/compiler/console.jar compiler2 archive2 ! stable: clean bootstrap compiler1 testengine archiveOld ! complete: stable compiler2 nicedoc ant archive2 fixpoint: complete compiler3 archive3 world: fixpoint check test *************** *** 191,197 **** ant: @echo "Building the Ant task definition..." ! @${javac} -sourcepath src -classpath "${ANT_CLASSPATH}:./classes:./classes.old" -d classes src/nice/tools/ant/Nicec.java ||\ echo -e "Compilation of the Ant task definition failed.\n NICE_ANTJAR or ANT_HOME should be set, Ant should be in the CLASSPATH or at least linked to by ./external/ant.jar" testengine: @echo "Building the testsuite engine..." --- 191,201 ---- ant: @echo "Building the Ant task definition..." ! @${javac} -sourcepath src -classpath "${ANT_CLASSPATH}:./classes:./classes.old" -d classes src/nice/tools/ant/*.java ||\ echo -e "Compilation of the Ant task definition failed.\n NICE_ANTJAR or ANT_HOME should be set, Ant should be in the CLASSPATH or at least linked to by ./external/ant.jar" + nicedoc: + @echo "Building nicedoc..." + $(NICEC1) nice.tools.doc + testengine: @echo "Building the testsuite engine..." |