ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/reports/php/Config.inc
Revision: 1.1
Committed: Mon Mar 26 17:11:16 2001 UTC (23 years, 1 month ago) by tdb
Branch: MAIN
CVS Tags: PROJECT_COMPLETION
Log Message:
Build scripts. In essence, these just package up the php pages into a single
archive ready for distribution.

File Contents

# Content
1 # Include Config for the php webreports
2 # $Id$
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 = /usr/local/proj/co600_10/cvs
13 CVSMODULE = source/reports/php
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-webreports
28 ZIPEXT = .zip
29 TAREXT = .tar
30 TARGZEXT = .tar.gz
31 ZIPFILE = $(ARCNAME)$(ZIPEXT)
32 TARFILE = $(ARCNAME)$(TAREXT)
33 TARGZFILE = $(ARCNAME)$(TARGZEXT)