--- projects/cms/source/server/Makefile.inc 2000/12/11 23:42:52 1.1 +++ projects/cms/source/server/Makefile.inc 2000/12/11 23:57:06 1.1.2.2 @@ -0,0 +1,17 @@ +# Include Makefile for the server +# $Id: Makefile.inc,v 1.1.2.2 2000/12/11 23:57:06 tdb Exp $ + +## Rule to CVS update the files +update : + cvs -q -d $(CVSROOT) update + +## General rule for building a class file +%.class : %.java + javac -g:none -O -d $(BUILD) $< + +## How to generate the IDL files +IDLMAKE = cd $(SERVERROOT) && $(MAKE) buildidl + +## Rule for making the IDL files +$(IDL) : $(SERVERROOT)/idl/iscream.idl + $(IDLMAKE)