[Nice-commit] Nice Makefile,1.111,1.112
Brought to you by:
bonniot
|
From: <bo...@us...> - 2003-04-02 23:00:02
|
Update of /cvsroot/nice/Nice
In directory sc8-pr-cvs1:/tmp/cvs-serv17476
Modified Files:
Makefile
Log Message:
Added stdlib to the sourcepath of java compilations. This is needed to compile
with jikes, which now works!
Index: Makefile
===================================================================
RCS file: /cvsroot/nice/Nice/Makefile,v
retrieving revision 1.111
retrieving revision 1.112
diff -C2 -d -r1.111 -r1.112
*** Makefile 12 Mar 2003 15:50:05 -0000 1.111
--- Makefile 2 Apr 2003 22:59:58 -0000 1.112
***************
*** 15,23 ****
javac = javac
! #javac = jikes
JAVAC_FLAGS = -O -g
! JAVAC= ${javac} -classpath "${TOP}/classes:${TOP}/classes.old" -sourcepath "${TOP}/src" -d "${TOP}/classes" $(JAVAC_FLAGS)
JAVACC= CLASSPATH="${TOP}/external/JavaCC.zip:${CLASSPATH}" java COM.sun.labs.javacc.Main
JAVADOC=javadoc
--- 15,23 ----
javac = javac
! #javac = jikes-classpath
JAVAC_FLAGS = -O -g
! JAVAC= ${javac} -classpath "${TOP}/classes:${TOP}/classes.old" -sourcepath "${TOP}/src:${TOP}/stdlib" -d "${TOP}/classes" $(JAVAC_FLAGS)
JAVACC= CLASSPATH="${TOP}/external/JavaCC.zip:${CLASSPATH}" java COM.sun.labs.javacc.Main
JAVADOC=javadoc
|