Subversion Repositories DevTools

Rev

Rev 5505 | Rev 5508 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5008 dpurdie 1
# Copyright (c) VIX TECHNOLOGY (AUST) LTD
129 ghuddy 2
#
3
# Module name   : Makefile.pl
4
# Module type   : Makefile system
5
# Compiler(s)   : ANSI C
6
# Environment(s): n/a
7
#
8
# Description:    makefile.pl for package Release_Manager
9
#
10
#.........................................................................#
11
 
12
die "Usage: Makefile.pl rootdir Makelib.pl\n"
13
    unless( $#ARGV+1 >= 2 );
14
require "$ARGV[1]";
15
 
16
#
17
# Build platform definitions ..
18
#
19
Platform( '*' );
20
 
21
GenerateFiles ('*', 'jats_transform_file',
22
                    '--NoVarTag',
5506 dpurdie 23
                    '-infile=--Prerequisite(../web/_about.template)',
24
                    '-outfile=--GeneratedCommon(../web/_about.asp)',
129 ghuddy 25
                    '-tag=__NAME__,--Var(BuildName)',
26
                    '-tag=__VERSION__,--Var(BuildVersion)',
27
                    '-tag=__VERSIONNUM__,--Var(BuildVersionNum)',
28
                );
29
 
30
 
31
 
32
############################################################################
33
#   Define the source files
34
#
35
 
36
#.............................................................................
37
# Packaging definitions
38
#
5506 dpurdie 39
PackageFile ( '*', '--DirTree=../web', '--StripDir', 
1425 dpurdie 40
                   '--FilterOut=_about.template',
5505 dpurdie 41
                   '--FilterOut=/archive/',
42
                   '--FilterOut=.*\.bak',
1376 dpurdie 43
                   '--Prod', '--Prefix=etc' );
129 ghuddy 44
PackageFile ( '*', '_about.asp', '--Prefix=etc' );
5506 dpurdie 45
PackageFile ( '*', 'descpkg' );
129 ghuddy 46
 
47
#.............................................................................
48
# Finally generate the makefile
49
#
50
MakefileGenerate();
51
 
52
#..  Successful termination
53
1;