--- projects/cms/source/server/Config2.inc 2000/12/11 23:42:52 1.1.2.1 +++ projects/cms/source/server/Config2.inc 2000/12/12 02:45:54 1.1.2.4 @@ -1,24 +1,49 @@ # Include Config for the server -# $Id: Config2.inc,v 1.1.2.1 2000/12/11 23:42:52 tdb Exp $ +# $Id: Config2.inc,v 1.1.2.4 2000/12/12 02:45:54 tdb Exp $ -## File Locations +## +## Only the first two need changing here, the rest are just information +## for use throughout the build scripts +## +## File and Path Locations + +# ****** These two will need to be set correctly ****** +# Location of the CVS Repository Root CVSROOT = /usr/local/proj/co600_10/cvs +# Location of the checked out local copy (hope to automate this) SERVERROOT = /home/cut/tdb1/cvs/source/server +# ****** These two will need to be set correctly ****** +# Location of the build directory BUILD = $(SERVERROOT)/build +# Relative (to BUILD) location of the libraries +LIBDIR = $(BUILD)/lib +# Location of the main include MKINC = $(SERVERROOT)/Makefile.inc + +## Compiler Information +JCLIBS = $(LIBDIR)/idl.jar:$(LIBDIR)/jacorb.jar:$(LIBDIR)/jaxp.jar:$(LIBDIR)/parser.jar +JCCLASSPATH = $(JCLIBS):$(SERVERROOT):$(BUILD):. + ## JAR information +# Name of JAR file (will be created in BUILD) PACKAGE = iscream.jar +# Main-class to be added to the Manifest MAINCLASS = uk.ac.ukc.iscream.core.Core -CLPATH = ./lib/idl.jar ./lib/jacorb.jar ./lib/jaxp.jar ./lib/parser.jar +# Class-path to be added to the Manifest +CLPATH = $(LIBDIR)/idl.jar $(LIBDIR)/jacorb.jar $(LIBDIR)/jaxp.jar $(LIBDIR)/parser.jar + ## IDL information +# Location IDL files will be checked out to IDLFILES = $(SERVERROOT)/idl/uk -## CHECK Files + +## CHECK Files (for dependencies) IDLCHECK = $(SERVERROOT)/.doneidl BUILDCHECK = $(SERVERROOT)/.donebuild +COMPILECHECK = .donecompile