--- projects/cms/source/server/Makefile.inc 2000/12/11 23:57:06 1.1.2.2 +++ projects/cms/source/server/Makefile.inc 2000/12/12 01:53:55 1.1.2.3 @@ -1,5 +1,5 @@ # Include Makefile for the server -# $Id: Makefile.inc,v 1.1.2.2 2000/12/11 23:57:06 tdb Exp $ +# $Id: Makefile.inc,v 1.1.2.3 2000/12/12 01:53:55 tdb Exp $ ## Rule to CVS update the files update : @@ -7,7 +7,7 @@ update : ## General rule for building a class file %.class : %.java - javac -g:none -O -d $(BUILD) $< + javac -g:none -O -classpath $(JCCLASSPATH) -d $(BUILD) $< ## How to generate the IDL files IDLMAKE = cd $(SERVERROOT) && $(MAKE) buildidl @@ -15,3 +15,7 @@ IDLMAKE = cd $(SERVERROOT) && $(MAKE) buildidl ## Rule for making the IDL files $(IDL) : $(SERVERROOT)/idl/iscream.idl $(IDLMAKE) + +## General Build Rule for Java Files +DOBUILD : $(IDL) $(CLASS) + @touch $(BUILDCHECK)