--- projects/cms/source/server/Makefile.inc 2000/12/11 23:42:52 1.1 +++ projects/cms/source/server/Makefile.inc 2000/12/12 02:45:54 1.1.2.4 @@ -0,0 +1,24 @@ +# Include Makefile for the server +# $Id: Makefile.inc,v 1.1.2.4 2000/12/12 02:45:54 tdb Exp $ + +## Rule to CVS update the files +update : + cvs -q -d $(CVSROOT) update + +## How to generate the IDL files +IDLMAKE = cd $(SERVERROOT) && $(MAKE) buildidl + +## Rule for making the IDL files +$(IDL) : $(SERVERROOT)/idl/iscream.idl + $(IDLMAKE) + +## General Build Rule for Java Files +DOBUILD : $(COMPILECHECK) $(IDL) + +$(COMPILECHECK) : $(JAVA) + javac -g:none -O -classpath $(JCCLASSPATH) -d $(BUILD) $? + @touch $(BUILDCHECK) + @touch $(COMPILECHECK) + +DOCLEAN : + rm -f $(COMPILECHECK)