ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/Config2.inc
Revision: 1.1.2.8
Committed: Wed Dec 13 17:59:21 2000 UTC (23 years, 5 months ago) by tdb
Branch: SERVER_PACKAGEBUILD
Changes since 1.1.2.7: +21 -9 lines
Log Message:
Added the "make cvsbuild revision=<REVISION/TAG>" feature to the Makefile.

File Contents

# User Rev Content
1 tdb 1.1.2.1 # Include Config for the server
2 tdb 1.1.2.8 # $Id: Config2.inc,v 1.1.2.7 2000/12/13 17:30:44 tdb1 Exp $
3 tdb 1.1.2.1
4 tdb 1.1.2.2 ##
5 tdb 1.1.2.8 ## Only the first section needs changing here, the rest are just
6     ## information for use throughout the build scripts
7 tdb 1.1.2.2 ##
8 tdb 1.1.2.1
9 tdb 1.1.2.2 ## File and Path Locations
10    
11 tdb 1.1.2.8 # ****** These need to be set correctly ******
12 tdb 1.1.2.2 # Location of the CVS Repository Root
13 tdb 1.1.2.1 CVSROOT = /usr/local/proj/co600_10/cvs
14 tdb 1.1.2.8 CVSSERVERMODULE = source/server
15     # ****** These need to be set correctly ******
16 tdb 1.1.2.1
17 tdb 1.1.2.2 # Location of the build directory
18 tdb 1.1.2.1 BUILD = $(SERVERROOT)/build
19 tdb 1.1.2.2 # Relative (to BUILD) location of the libraries
20     LIBDIR = $(BUILD)/lib
21     # Location of the main include
22 tdb 1.1.2.1 MKINC = $(SERVERROOT)/Makefile.inc
23    
24 tdb 1.1.2.6 # Install Prefix
25     prefix = /usr/local/proj/co600_10/iscream-server
26     INSTALL = $(prefix)
27 tdb 1.1.2.3
28 tdb 1.1.2.8 # cvsbuild temporary directory name
29     CVSBUILDTEMP = cvsbuildtemp
30     # cvsbuild default revision
31     rev = HEAD
32     REVISION = $(rev)
33    
34 tdb 1.1.2.3 ## Compiler Information
35     JCLIBS = $(LIBDIR)/idl.jar:$(LIBDIR)/jacorb.jar:$(LIBDIR)/jaxp.jar:$(LIBDIR)/parser.jar
36     JCCLASSPATH = $(JCLIBS):$(SERVERROOT):$(BUILD):.
37 tdb 1.1.2.2
38 tdb 1.1.2.6 ## Package information
39    
40 tdb 1.1.2.8 # Name of archives
41     ARCNAME = iscream
42     TAREXT = .tar
43     TARGZEXT = .tar.gz
44     ZIPEXT = .zip
45    
46     TARFILE = $(ARCNAME)$(TAREXT)
47     TARGZFILE = $(ARCNAME)$(TARGZEXT)
48     ZIPFILE = $(ARCNAME)$(ZIPEXT)
49 tdb 1.1.2.1
50 tdb 1.1.2.2 # Name of JAR file (will be created in BUILD)
51 tdb 1.1.2.1 PACKAGE = iscream.jar
52 tdb 1.1.2.2 # Main-class to be added to the Manifest
53 tdb 1.1.2.1 MAINCLASS = uk.ac.ukc.iscream.core.Core
54 tdb 1.1.2.2 # Class-path to be added to the Manifest
55     CLPATH = $(LIBDIR)/idl.jar $(LIBDIR)/jacorb.jar $(LIBDIR)/jaxp.jar $(LIBDIR)/parser.jar
56 tdb 1.1.2.1
57 tdb 1.1.2.2
58     ## CHECK Files (for dependencies)
59 tdb 1.1.2.1 IDLCHECK = $(SERVERROOT)/.doneidl
60     BUILDCHECK = $(SERVERROOT)/.donebuild
61 tdb 1.1.2.4 COMPILECHECK = .donecompile