Subversion Repositories DevTools

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4995 dpurdie 1
# Copyright (c) VIX TECHNOLOGY (AUST) LTD
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
die "Usage: Makefile.pl rootdir Makelib.pl\n"
12
    unless( $#ARGV+1 >= 2 );
13
require "$ARGV[1]";
14
 
15
#
16
# Build platform definitions ..
17
#
18
Platform( '*' );
19
 
20
############################################################################
21
#   Invoke a script to do the real work
22
#   The process of 'building' this package is really a packaging process
23
#
24
GenerateFiles ( '*', "--Script=MakePackage.pl",
25
                     "--NoGenerate",
26
                     "--Text=Releasing JATS",
361 dpurdie 27
                     "--Var(InterfaceDir)",
229 dpurdie 28
                     "--Var(BuildName)",
29
                     "--Var(BuildVersion)",
30
                     "--Var(PackageDir)",
31
                     "--Var(BuildRoot)",
32
                     "--Var(Verbose)",
33
                     );
34
 
35
#.............................................................................
36
# Packaging definitions
37
#
38
PackageFile ( '*'   , 'descpkg' );
39
 
40
#.............................................................................
41
# Finally generate the makefile
42
#
43
MakefileGenerate();
44
 
45
#..  Successful termination
46
1;
47