| 2 |
|
# $Id$ |
| 3 |
|
|
| 4 |
|
## |
| 5 |
< |
## Only the first two need changing here, the rest are just information |
| 5 |
> |
## Only the first one needs 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 ****** |
| 11 |
> |
# ****** This needs 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 ****** |
| 14 |
> |
# ****** This needs to be set correctly ****** |
| 15 |
|
|
| 16 |
|
# Location of the build directory |
| 17 |
|
BUILD = $(SERVERROOT)/build |
| 20 |
|
# Location of the main include |
| 21 |
|
MKINC = $(SERVERROOT)/Makefile.inc |
| 22 |
|
|
| 23 |
+ |
# Install Prefix |
| 24 |
+ |
prefix = /usr/local/proj/co600_10/iscream-server |
| 25 |
+ |
INSTALL = $(prefix) |
| 26 |
|
|
| 27 |
|
## Compiler Information |
| 28 |
|
JCLIBS = $(LIBDIR)/idl.jar:$(LIBDIR)/jacorb.jar:$(LIBDIR)/jaxp.jar:$(LIBDIR)/parser.jar |
| 29 |
|
JCCLASSPATH = $(JCLIBS):$(SERVERROOT):$(BUILD):. |
| 30 |
|
|
| 31 |
< |
## JAR information |
| 31 |
> |
## Package information |
| 32 |
|
|
| 33 |
+ |
# Name of tar archive (will be gzipped afterwards) |
| 34 |
+ |
TARFILE = iscream.tar |
| 35 |
+ |
TARGZFILE = iscream.tar.gz |
| 36 |
+ |
ZIPFILE = iscream.zip |
| 37 |
+ |
|
| 38 |
|
# Name of JAR file (will be created in BUILD) |
| 39 |
|
PACKAGE = iscream.jar |
| 40 |
|
# Main-class to be added to the Manifest |
| 41 |
|
MAINCLASS = uk.ac.ukc.iscream.core.Core |
| 42 |
|
# Class-path to be added to the Manifest |
| 43 |
|
CLPATH = $(LIBDIR)/idl.jar $(LIBDIR)/jacorb.jar $(LIBDIR)/jaxp.jar $(LIBDIR)/parser.jar |
| 38 |
– |
|
| 39 |
– |
|
| 40 |
– |
## IDL information |
| 41 |
– |
|
| 42 |
– |
# Location IDL files will be checked out to |
| 43 |
– |
IDLFILES = $(SERVERROOT)/idl/uk |
| 44 |
|
|
| 45 |
|
|
| 46 |
|
## CHECK Files (for dependencies) |