ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/conient/Config2.inc
Revision: 1.4
Committed: Tue Feb 27 15:11:44 2001 UTC (23 years, 6 months ago) by ajm
Branch: MAIN
Changes since 1.3: +5 -1 lines
Log Message:
Made change to handle all resources (images etc).
Modified all scripts and classes which handles resources.
Moves to ./build/resources.
Also fixed bug in makefile which didn't copy ./build/etc on install.

File Contents

# User Rev Content
1 tdb 1.1 # Include Config for conient
2 ajm 1.4 # $Id: Config2.inc,v 1.3 2001/01/28 23:44:04 tdb1 Exp $
3 tdb 1.1
4     ##
5     ## Only the first section needs changing here, the rest are just
6     ## information for use throughout the build scripts
7     ##
8    
9     ## File and Path Locations
10    
11     # ****** These need to be set correctly ******
12     # Location of the CVS Repository Root
13     CVSROOT = /usr/local/proj/co600_10/cvs
14     CVSMODULE = source/client/conient
15     # ****** These need to be set correctly ******
16    
17     # Location of the build directory
18     BUILD = $(SOURCEROOT)/build
19 ajm 1.4 # Relative (to BUILD) location of the configuration files
20     ETCDIR = $(BUILD)/etc
21     # Relative (to BUILD) location of the resources
22     RESOURCESDIR = $(BUILD)/resources
23 tdb 1.1 # Relative (to BUILD) location of the libraries
24     LIBDIR = $(BUILD)/lib
25     # Location of the main include
26     MKINC = $(SOURCEROOT)/Makefile.inc
27    
28     # Install Prefix
29     prefix = /usr/local/iscream-conient
30     INSTALL = $(prefix)
31    
32     # cvsbuild temporary directory name
33     CVSBUILDTEMP = $(SOURCEROOT)/cvsbuildtemp
34     # cvsbuild default revision
35     rev = HEAD
36     REVISION = $(rev)
37    
38     ## Compiler Information
39     JCLIBS = $(LIBDIR)/jaxp.jar:$(LIBDIR)/parser.jar:$(LIBDIR)/iscream-util.jar
40     JCCLASSPATH = $(JCLIBS):$(SOURCEROOT):.
41    
42     ## Package information
43    
44     # Name of archives
45     ARCNAME = iscream-conient
46     TAREXT = .tar
47     TARGZEXT = .tar.gz
48     ZIPEXT = .zip
49    
50     TARFILE = $(ARCNAME)$(TAREXT)
51     TARGZFILE = $(ARCNAME)$(TARGZEXT)
52     ZIPFILE = $(ARCNAME)$(ZIPEXT)
53    
54     # Name of JAR file (will be created in BUILD)
55     PACKAGE = iscream-conient.jar
56     # Main-class to be added to the Manifest
57 tdb 1.2 MAINCLASS = uk.ac.ukc.iscream.conient.Conient
58 tdb 1.1 # Class-path to be added to the Manifest
59     CLPATH = lib/jaxp.jar lib/parser.jar lib/iscream-util.jar
60    
61    
62     ## CHECK Files (for dependencies)
63     BUILDCHECK = $(SOURCEROOT)/.donebuild
64     COMPILECHECK = .donecompile
65 tdb 1.3 COPYCHECK = .donecopy
66 tdb 1.1
67    
68     ## Javadoc package list
69     PKGLIST = uk.ac.ukc.iscream.conient\
70     uk.ac.ukc.iscream.conient.datacomponents
71    
72     DOCDIR = doc