| 1 |
# Include Config for the ihost |
| 2 |
# $Id: Config.inc,v 1.5 2002/03/08 15:35:16 tdb Exp $ |
| 3 |
|
| 4 |
## |
| 5 |
## Only the first section needs changing here, the rest are just information |
| 6 |
## |
| 7 |
|
| 8 |
## File and Path Locations |
| 9 |
|
| 10 |
# ****** These need to be set correctly ****** |
| 11 |
# Location of the CVS Repository Root |
| 12 |
CVSROOT = :ext:username@cvs.i-scream.org.uk:/cvs/i-scream |
| 13 |
CVSMODULE = cms/source/host/ihost |
| 14 |
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` |
| 15 |
# ****** These need to be set correctly ****** |
| 16 |
|
| 17 |
# Location of build directory |
| 18 |
BUILDDIR = build |
| 19 |
|
| 20 |
# cvsbuild temporary directory name |
| 21 |
CVSBUILDTEMP = cvsbuildtemp |
| 22 |
# cvsbuild default revision |
| 23 |
rev = HEAD |
| 24 |
REVISION = $(rev) |
| 25 |
|
| 26 |
# archive names |
| 27 |
ARCNAME = iscream-ihost |
| 28 |
TAREXT = .tar |
| 29 |
TARGZEXT = .tar.gz |
| 30 |
TARFILE = $(ARCNAME)$(TAREXT) |
| 31 |
TARGZFILE = $(ARCNAME)$(TARGZEXT) |
| 32 |
|
| 33 |
# plugins |
| 34 |
PERLPLUGINS = ../ihost-plugins/perl |
| 35 |
LINUXPLUGINS = ../ihost-plugins/linux |
| 36 |
SOLARISPLUGINS = ../ihost-plugins/solaris |
| 37 |
FREEBSDPLUGINS = ../ihost-plugins/freebsd |
| 38 |
|