Update of /cvsroot/nice/Nice/regtest/java
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30361/regtest/java
Modified Files:
Makefile
Log Message:
Use the current nice compiler, not the system one.
Index: Makefile
===================================================================
RCS file: /cvsroot/nice/Nice/regtest/java/Makefile,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Makefile 28 Nov 2003 14:01:31 -0000 1.2
--- Makefile 29 Mar 2004 19:31:38 -0000 1.3
***************
*** 1,6 ****
all: B/BIj.class B/BAj.class J/J.class J/Other.class
A/An.class A/In.class: A/A.nice
! nicec --sourcepath "${NICE_TOP}" regtest.java.A
B/BAj.class: A/An.class B/BAj.java
--- 1,8 ----
+ nicec = $(NICE_TOP)/bin/nicec -e --sourcepath "${NICE_TOP}"
+
all: B/BIj.class B/BAj.class J/J.class J/Other.class
A/An.class A/In.class: A/A.nice
! $(nicec) regtest.java.A
B/BAj.class: A/An.class B/BAj.java
|