ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/corbaservices/Config2.inc
Revision: 1.18
Committed: Sun Aug 1 10:40:16 2004 UTC (19 years, 9 months ago) by tdb
Branch: MAIN
CVS Tags: HEAD
Changes since 1.17: +3 -3 lines
Log Message:
Catch a lot of old URL's and update them. Also remove a couple of old files
that aren't used.

File Contents

# Content
1 # Include Config for corbaservices
2 # $Id: Config2.inc,v 1.17 2003/08/22 13:36:18 tdb Exp $
3
4 include $(SOURCEROOT)/Version.inc
5
6 # Name of our dist
7 DISTNAME = iscream_corbaservices
8
9 # Location of the i-scream CVS Repository Root
10 CVSROOT = :pserver:anonymous@cvs.i-scream.org:/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 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 # Compiler Information
38 JCLIBS = $(LIBDIR)/jacorb.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 # 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.corbaservices.CorbaServices
48 # Class-path to be added to the Manifest
49 CLPATH = lib/jacorb.jar
50
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 # Javadoc package list
63 PKGLIST = uk.org.iscream.cms.corbaservices
64
65 # Javadoc formatting
66 JDTITLE = "i-scream CMS CORBA services"
67 JDHEADER = "<img src='http://www.i-scream.org/i-scream_small.gif' width='146' height='38'>"
68 JDBOTTOM = "<i>Copyright &\#169; 2000-2003 i-scream. All Rights Reserved.</i>"
69
70 # Javadoc Directories
71 DOCDIR = $(BUILD)/doc
72 APICACHE = $(SOURCEROOT)/.api-cache
73
74 # Javadoc API linking
75 JDJAPI = "http://java.sun.com/j2se/1.4.2/docs/api/"
76
77 # Javadoc API cache
78 JDJAPIC = $(APICACHE)/jdk
79
80 # ChangeLog file
81 CHANGELOG = $(BUILD)/ChangeLog
82
83 # Directory to put the source code in
84 SRCDIR = $(BUILD)/src
85 # Files to be included in the source code dist
86 SRCFILES = Config2.inc Makefile Makefile.inc build.config \
87 build.xml configure uk COPYING Version.inc \
88 $(BUILDDIRNAME)/etc $(BUILDDIRNAME)/web \
89 $(BUILDDIRNAME)/lib $(BUILDDIRNAME)/run.bat \
90 $(BUILDDIRNAME)/run.sh $(BUILDDIRNAME)/Makefile \
91 $(BUILDDIRNAME)/$(JACPROP)
92
93 # License file
94 LICFILE = COPYING
95
96 # Jacorb properties file
97 JACPROP = jacorb.properties
98
99 # User configurable options - defaults
100 dest = $(BUILD)
101 prefix = /opt/$(DISTNAME)-$(VERSION)
102
103 # Install Prefix
104 INSTALLPREFIX = $(prefix)
105 DISTDEST = $(dest)
106
107 # Archive extensions
108 TAREXT = .tar
109 TARGZEXT = .tar.gz
110 ZIPEXT = .zip
111 SIGEXT = .asc
112
113 # Subdirectory the dist should be in
114 DISTDIR = $(DISTNAME)-$(VERSION)
115
116 # Name of various distfiles
117 TARFILE = $(DISTNAME)-$(VERSION)$(TAREXT)
118 TARGZFILE = $(DISTNAME)-$(VERSION)$(TARGZEXT)
119 TARGZFILESIG = $(TARGZFILE)$(SIGEXT)
120 ZIPFILE = $(DISTNAME)-$(VERSION)$(ZIPEXT)
121 ZIPFILESIG = $(ZIPFILE)$(SIGEXT)
122 BINTARFILE = $(DISTNAME)-bin-$(VERSION)$(TAREXT)
123 BINTARGZFILE = $(DISTNAME)-bin-$(VERSION)$(TARGZEXT)
124 BINTARGZFILESIG = $(BINTARGZFILE)$(SIGEXT)
125 BINZIPFILE = $(DISTNAME)-bin-$(VERSION)$(ZIPEXT)
126 BINZIPFILESIG = $(BINZIPFILE)$(SIGEXT)