Subversion Repositories DevTools

Rev

Rev 7300 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
7300 dpurdie 1
# COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.
229 dpurdie 2
#
3
# Module name   : Makefile.pl
4
# Module type   : Makefile system
4995 dpurdie 5
# Environment(s): JATS
229 dpurdie 6
#
7
# Description:    makefile.pl to create the 'jats' packag
8
#
9
#.........................................................................#
10
 
11
require "$ARGV[1]";
12
 
13
#
14
# Build platform definitions ..
15
#
16
Platform( '*' );
17
 
18
############################################################################
19
#   Invoke a script to do the real work
20
#   The process of 'building' this package is really a packaging process
21
#
22
GenerateFiles ( '*', "--Script=MakePackage.pl",
23
                     "--NoGenerate",
24
                     "--Text=Releasing JATS",
361 dpurdie 25
                     "--Var(InterfaceDir)",
229 dpurdie 26
                     "--Var(BuildName)",
27
                     "--Var(BuildVersion)",
28
                     "--Var(PackageDir)",
29
                     "--Var(BuildRoot)",
30
                     "--Var(Verbose)",
31
                     );
32
 
33
#.............................................................................
34
# Packaging definitions
35
#
36
PackageFile ( '*'   , 'descpkg' );
37
 
38
#.............................................................................
39
# Finally generate the makefile
40
#
41
MakefileGenerate();
42
 
43
#..  Successful termination
44
1;
45