ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/conient/Config2.inc
(Generate patch)

Comparing projects/cms/source/conient/Config2.inc (file contents):
Revision 1.1 by tdb, Wed Jan 24 03:03:13 2001 UTC vs.
Revision 1.19 by tdb, Tue Feb 11 22:00:55 2003 UTC

# Line 1 | Line 1
1   # Include Config for conient
2   # $Id$
3  
4 < ##
5 < ## Only the first section needs changing here, the rest are just
6 < ## information for use throughout the build scripts
7 < ##
4 > include $(SOURCEROOT)/Version.inc
5  
6 < ## File and Path Locations
6 > # Name of our dist
7 > DISTNAME = iscream_conient
8  
9 < # ****** These need to be set correctly ******
10 < # 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 ******
9 > # Location of the i-scream CVS Repository Root
10 > CVSROOT = :pserver:anonymous@cvs.i-scream.org.uk:/cvs/i-scream
11  
12 + # This will attempt to locate cvs, and return the path.
13 + 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`
14 +
15 + # and the same for cvs2cl
16 + CVS2CL = `if test -x /usr/bin/cvs2cl; then echo /usr/bin/cvs2cl; else if test -x /usr/local/bin/cvs2cl; then echo /usr/local/bin/cvs2cl; else echo cvs2cl; fi fi`
17 + # and flags for cvs2cl
18 + CVS2CLFLAGS = --stdout --no-wrap -r -t -w -S -g "-d $(CVSROOT)" -g "-q"
19 +
20 + # and the same for gpg
21 + GPG = `if test -x /usr/bin/gpg; then echo /usr/bin/gpg; else if test -x /usr/local/bin/gpg; then echo /usr/local/bin/gpg; else echo gpg; fi fi`
22 + # and flags for gpg
23 + GPGFLAGS = -abs --default-key=0x135D6B0A
24 +
25 + # Binary to run for javac and javadoc
26 + JAVACBIN = javac
27 + JAVADOCBIN = javadoc
28 +
29   # Location of the build directory
30 < BUILD = $(SOURCEROOT)/build
30 > BUILDDIRNAME = build
31 > BUILD = $(SOURCEROOT)/$(BUILDDIRNAME)
32   # Relative (to BUILD) location of the libraries
33   LIBDIR = $(BUILD)/lib
34   # Location of the main include
35   MKINC = $(SOURCEROOT)/Makefile.inc
36  
37 < # Install Prefix
38 < prefix = /usr/local/iscream-conient
39 < INSTALL = $(prefix)
37 > # Compiler Information
38 > JCLIBS = $(LIBDIR)/jaxp.jar:$(LIBDIR)/crimson.jar:$(LIBDIR)/iscream_util.jar
39 > JCCLASSPATH = $(JCLIBS):$(SOURCEROOT):$(BUILD):.
40 > # set JCFLAGS to these if you want to optimise and turn off debugging
41 > #JCFLAGS = -g:none -O
42 > JCFLAGS =
43  
44 < # cvsbuild temporary directory name
45 < CVSBUILDTEMP = $(SOURCEROOT)/cvsbuildtemp
46 < # cvsbuild default revision
47 < rev = HEAD
48 < REVISION = $(rev)
44 > # Name of JAR file (will be created in BUILD)
45 > PACKAGE = $(DISTNAME).jar
46 > # Main-class to be added to the Manifest
47 > MAINCLASS = uk.org.iscream.cms.conient.Conient
48 > # Class-path to be added to the Manifest
49 > CLPATH = lib/jaxp.jar lib/crimson.jar lib/iscream_util.jar
50  
51 < ## Compiler Information
52 < JCLIBS = $(LIBDIR)/jaxp.jar:$(LIBDIR)/parser.jar:$(LIBDIR)/iscream-util.jar
53 < JCCLASSPATH = $(JCLIBS):$(SOURCEROOT):.
51 > # CHECK Files (for dependencies)
52 > MCOMPILECHECK = $(SOURCEROOT)/$(COMPILECHECK)
53 > SRCCHECK = $(SOURCEROOT)/.donesrc
54 > JAVADOCCHECK = $(SOURCEROOT)/.donejavadoc
55 > MKDISTCHECK = $(BUILD)/.donemkdist
56 > MKDISTBINCHECK = $(BUILD)/.donemkdistbin
57 > MKDISTFILESCHECK = $(BUILD)/.donemkdistfiles
58 > MKDISTFILESBINCHECK = $(BUILD)/.donemkdistfilesbin
59 > COMPILECHECK = .donecompile
60 > COPYCHECK = .donecopy
61  
62 < ## Package information
62 > # Javadoc package list
63 > PKGLIST = uk.org.iscream.cms.conient\
64 >        uk.org.iscream.cms.conient.datacomponents
65  
66 < # Name of archives
67 < ARCNAME = iscream-conient
68 < TAREXT = .tar
69 < TARGZEXT = .tar.gz
44 < ZIPEXT = .zip
66 > # Javadoc formatting
67 > JDTITLE = "i-scream CMS conient"
68 > JDHEADER = "<img src='http://www.i-scream.org.uk/i-scream_small.gif' width='146' height='38'>"
69 > JDBOTTOM = "<i>Copyright &\#169; 2000-2003 i-scream. All Rights Reserved.</i>"
70  
71 < TARFILE = $(ARCNAME)$(TAREXT)
72 < TARGZFILE = $(ARCNAME)$(TARGZEXT)
73 < ZIPFILE = $(ARCNAME)$(ZIPEXT)
71 > # Javadoc Directories
72 > DOCDIR = $(BUILD)/doc
73 > APICACHE = $(SOURCEROOT)/.api-cache
74  
75 < # Name of JAR file (will be created in BUILD)
76 < PACKAGE = iscream-conient.jar
52 < # Main-class to be added to the Manifest
53 < MAINCLASS = uk.ac.ukc.iscream.conient.SwingClient
54 < # Class-path to be added to the Manifest
55 < CLPATH = lib/jaxp.jar lib/parser.jar lib/iscream-util.jar
75 > # Javadoc API linking
76 > JDJAPI = "http://java.sun.com/j2se/1.4.1/docs/api/"
77  
78 + # Javadoc API cache
79 + JDJAPIC = $(APICACHE)/jdk
80  
81 < ## CHECK Files (for dependencies)
82 < BUILDCHECK = $(SOURCEROOT)/.donebuild
60 < COMPILECHECK = .donecompile
81 > # ChangeLog file
82 > CHANGELOG = $(BUILD)/ChangeLog
83  
84 + # Directory to put the source code in
85 + SRCDIR = $(BUILD)/src
86 + # Files to be included in the source code dist
87 + SRCFILES = Config2.inc Makefile Makefile.inc README build.config \
88 +           build.xml configure uk COPYING Version.inc \
89 +           $(BUILDDIRNAME)/COPYING $(BUILDDIRNAME)/etc \
90 +           $(BUILDDIRNAME)/lib $(BUILDDIRNAME)/run.bat \
91 +           $(BUILDDIRNAME)/run.sh $(BUILDDIRNAME)/Makefile \
92 +           $(BUILDDIRNAME)/resources
93  
94 < ## Javadoc package list
95 < PKGLIST = uk.ac.ukc.iscream.conient\
96 <          uk.ac.ukc.iscream.conient.datacomponents
94 > # User configurable options - defaults
95 > dest = $(BUILD)
96 > prefix = /opt/$(DISTNAME)-$(VERSION)
97  
98 < DOCDIR = doc
98 > # Install Prefix
99 > INSTALLPREFIX = $(prefix)
100 > DISTDEST = $(dest)
101 >
102 > # Archive extensions
103 > TAREXT = .tar
104 > TARGZEXT = .tar.gz
105 > ZIPEXT = .zip
106 > SIGEXT = .asc
107 >
108 > # Subdirectory the dist should be in
109 > DISTDIR = $(DISTNAME)-$(VERSION)
110 >
111 > # Name of various distfiles
112 > TARFILE = $(DISTNAME)-$(VERSION)$(TAREXT)
113 > TARGZFILE = $(DISTNAME)-$(VERSION)$(TARGZEXT)
114 > TARGZFILESIG = $(TARGZFILE)$(SIGEXT)
115 > ZIPFILE = $(DISTNAME)-$(VERSION)$(ZIPEXT)
116 > ZIPFILESIG = $(ZIPFILE)$(SIGEXT)
117 > BINTARFILE = $(DISTNAME)-bin-$(VERSION)$(TAREXT)
118 > BINTARGZFILE = $(DISTNAME)-bin-$(VERSION)$(TARGZEXT)
119 > BINTARGZFILESIG = $(BINTARGZFILE)$(SIGEXT)
120 > BINZIPFILE = $(DISTNAME)-bin-$(VERSION)$(ZIPEXT)
121 > BINZIPFILESIG = $(BINZIPFILE)$(SIGEXT)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines