--- projects/cms/source/server/Makefile 2000/11/14 02:41:04 1.1 +++ projects/cms/source/server/Makefile 2000/12/11 23:43:50 1.6.2.2 @@ -1,21 +1,28 @@ # Makefile for server -# $Id: Makefile,v 1.1 2000/11/14 02:41:04 tdb Exp $ +# $Id: Makefile,v 1.6.2.2 2000/12/11 23:43:50 tdb Exp $ -all : idl core filter +include Config.inc -core : - cd CORE && $(MAKE) +all : buildidl code -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 : + 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 +run : build + cd build && java -jar iscream.jar + +build : all + cd build && $(MAKE) package + +include $(MKINC)