--- projects/cms/source/conient/Config2.inc 2001/01/24 03:12:47 1.2 +++ projects/cms/source/conient/Config2.inc 2001/06/11 14:00:31 1.12 @@ -1,5 +1,5 @@ # Include Config for conient -# $Id: Config2.inc,v 1.2 2001/01/24 03:12:47 tdb Exp $ +# $Id: Config2.inc,v 1.12 2001/06/11 14:00:31 tdb Exp $ ## ## Only the first section needs changing here, the rest are just @@ -11,11 +11,18 @@ # ****** These need to be set correctly ****** # Location of the CVS Repository Root CVSROOT = /usr/local/proj/co600_10/cvs -CVSMODULE = source/client/conient +CVSMODULE = cms/source/client/conient # ****** These need to be set correctly ****** +# This will attempt to locate cvs, and return the path. +CVS = `if test -x /usr/bin/cvs; then echo /usr/bin/cvs; else if test -x /usr/local/bin/cvs; then echo /usr/local/bin/cvs; else echo cvs; fi fi` + # Location of the build directory BUILD = $(SOURCEROOT)/build +# Relative (to BUILD) location of the configuration files +ETCDIR = $(BUILD)/etc +# Relative (to BUILD) location of the resources +RESOURCESDIR = $(BUILD)/resources # Relative (to BUILD) location of the libraries LIBDIR = $(BUILD)/lib # Location of the main include @@ -32,8 +39,11 @@ rev = HEAD REVISION = $(rev) ## Compiler Information -JCLIBS = $(LIBDIR)/jaxp.jar:$(LIBDIR)/parser.jar:$(LIBDIR)/iscream-util.jar +JCLIBS = $(LIBDIR)/crimson.jar:$(LIBDIR)/jaxp.jar:$(LIBDIR)/iscream-util.jar JCCLASSPATH = $(JCLIBS):$(SOURCEROOT):. +# set JCFLAGS to these if you want to optimise and turn off debugging +#JCFLAGS = -g:none -O +JCFLAGS = ## Package information @@ -50,18 +60,23 @@ ZIPFILE = $(ARCNAME)$(ZIPEXT) # Name of JAR file (will be created in BUILD) PACKAGE = iscream-conient.jar # Main-class to be added to the Manifest -MAINCLASS = uk.ac.ukc.iscream.conient.Conient +MAINCLASS = uk.org.iscream.cms.conient.Conient # Class-path to be added to the Manifest -CLPATH = lib/jaxp.jar lib/parser.jar lib/iscream-util.jar +CLPATH = lib/crimson.jar lib/jaxp.jar lib/iscream-util.jar ## CHECK Files (for dependencies) BUILDCHECK = $(SOURCEROOT)/.donebuild COMPILECHECK = .donecompile +COPYCHECK = .donecopy ## Javadoc package list -PKGLIST = uk.ac.ukc.iscream.conient\ - uk.ac.ukc.iscream.conient.datacomponents +PKGLIST = uk.org.iscream.cms.conient\ + uk.org.iscream.cms.conient.datacomponents + +## Javadoc formatting +JDTITLE = "i-scream Conient" +JDHEADER = "" DOCDIR = doc