--- projects/cms/source/server/Makefile 2000/11/16 14:46:53 1.2 +++ projects/cms/source/server/Makefile 2000/12/12 02:45:54 1.6.2.5 @@ -1,23 +1,30 @@ # Makefile for server -# $Id: Makefile,v 1.2 2000/11/16 14:46:53 tdb Exp $ +# $Id: Makefile,v 1.6.2.5 2000/12/12 02:45:54 tdb Exp $ -all : idl core filter +include Config.inc -core : - cd CORE && $(MAKE) +all : buildidl code build -filter : - cd Filter && $(MAKE) +idl : $(IDL) +$(IDL) : idl/iscream.idl + cd idl && $(MAKE) idl -idl : iscream.idl - idl iscream.idl - @touch .madeidl +buildidl : $(IDL) idl + cd idl && $(MAKE) build +code : buildidl + cd uk/ac/ukc/iscream && $(MAKE) all + clean : - rm -Rf uk - rm -f .madeidl - cd CORE && $(MAKE) clean - cd Filter && $(MAKE) clean + cd idl && $(MAKE) clean + cd build && $(MAKE) clean + cd uk/ac/ukc/iscream && $(MAKE) clean + rm -Rf $(BUILDCHECK) $(IDLCHECK) -update : - cvs -q -d /usr/local/proj/co600_10/cvs update +run : build + cd build && java -jar iscream.jar + +build : code + cd build && $(MAKE) package + +include $(MKINC)