--- projects/cms/source/server/idl/Makefile 2000/12/11 20:24:45 1.1.2.1 +++ projects/cms/source/server/idl/Makefile 2003/05/05 22:05:01 1.13 @@ -1,18 +1,28 @@ # Makefile for idl -# $Id: Makefile,v 1.1.2.1 2000/12/11 20:24:45 tdb Exp $ +# $Id: Makefile,v 1.13 2003/05/05 22:05:01 tdb Exp $ -IDL = .madeidl +include ../Config.inc + IDLFILES = uk -idl : $(IDL) +.PHONY : all +all : build -$(IDL) : iscream.idl - idl iscream.idl - @touch .madeidl +.PHONY : idl +idl : iscream.idl + java -classpath $(BUILD)/lib/idl.jar org.jacorb.idl.parser -sloppy_names iscream.idl +.PHONY : build +build : idl + cd uk/org/iscream/cms/server/clientinterface && javac $(JCFLAGS) -classpath $(JCCLASSPATH) -d $(BUILD) *.java + cd uk/org/iscream/cms/server/core && javac $(JCFLAGS) -classpath $(JCCLASSPATH) -d $(BUILD) *.java + cd uk/org/iscream/cms/server/filter && javac $(JCFLAGS) -classpath $(JCCLASSPATH) -d $(BUILD) *.java + @touch $(IDLCHECK) + @rm -f $(MCOMPILECHECK) + +.PHONY : clean clean : rm -Rf $(IDLFILES) - rm -f $(IDL) + rm -f $(IDLCHECK) -update : - cvs -q -d /usr/local/proj/co600_10/cvs update +include $(MKINC)