1 |
+ |
# Include Config for the server |
2 |
+ |
# $Id$ |
3 |
+ |
|
4 |
+ |
## |
5 |
+ |
## Only the first two need changing here, the rest are just information |
6 |
+ |
## for use throughout the build scripts |
7 |
+ |
## |
8 |
+ |
|
9 |
+ |
## File and Path Locations |
10 |
+ |
|
11 |
+ |
# ****** These two will need to be set correctly ****** |
12 |
+ |
# Location of the CVS Repository Root |
13 |
+ |
CVSROOT = /usr/local/proj/co600_10/cvs |
14 |
+ |
# Location of the checked out local copy (hope to automate this) |
15 |
+ |
SERVERROOT = /home/cut/tdb1/cvs/source/server |
16 |
+ |
# ****** These two will need to be set correctly ****** |
17 |
+ |
|
18 |
+ |
# Location of the build directory |
19 |
+ |
BUILD = $(SERVERROOT)/build |
20 |
+ |
# Relative (to BUILD) location of the libraries |
21 |
+ |
LIBDIR = $(BUILD)/lib |
22 |
+ |
# Location of the main include |
23 |
+ |
MKINC = $(SERVERROOT)/Makefile.inc |
24 |
+ |
|
25 |
+ |
|
26 |
+ |
## JAR information |
27 |
+ |
|
28 |
+ |
# Name of JAR file (will be created in BUILD) |
29 |
+ |
PACKAGE = iscream.jar |
30 |
+ |
# Main-class to be added to the Manifest |
31 |
+ |
MAINCLASS = uk.ac.ukc.iscream.core.Core |
32 |
+ |
# Class-path to be added to the Manifest |
33 |
+ |
CLPATH = $(LIBDIR)/idl.jar $(LIBDIR)/jacorb.jar $(LIBDIR)/jaxp.jar $(LIBDIR)/parser.jar |
34 |
+ |
|
35 |
+ |
|
36 |
+ |
## IDL information |
37 |
+ |
|
38 |
+ |
# Location IDL files will be checked out to |
39 |
+ |
IDLFILES = $(SERVERROOT)/idl/uk |
40 |
+ |
|
41 |
+ |
|
42 |
+ |
## CHECK Files (for dependencies) |
43 |
+ |
IDLCHECK = $(SERVERROOT)/.doneidl |
44 |
+ |
BUILDCHECK = $(SERVERROOT)/.donebuild |