Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
6247 dpurdie 1
# COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.
2
#
3
# Module name   : build.pl
4
# Module type   : Makefile system
5
# Environment(s): JATS
6
#
7
# Description:    build.pl jats-installer
8
#.........................................................................#
9
 
10
#..     Build system
11
#
12
$MAKELIB_PL     = "$ENV{ GBE_TOOLS }/makelib.pl";
13
$BUILDLIB_PL    = "$ENV{ GBE_TOOLS }/buildlib.pl";
14
 
15
require         "$BUILDLIB_PL";
16
require         "$MAKELIB_PL";
17
 
18
#..     Product configuration
19
#
20
BuildPlatforms ('UBUNTU16', '--OnlyProd');
21
BuildPlatforms ('UBUNTU14', '--OnlyProd');
22
BuildPlatforms ('UBUNTU12', '--OnlyProd');
23
BuildPlatforms ('RHEL7', '--OnlyProd');
24
 
25
BuildName       ( 'jats-installer 1.0.0000.cr' );
26
BuildInterface  ( 'interface' );
27
 
28
#..     External Packages
29
#
30
LinkPkgArchive ( 'debian_dpkg'    , '1.13.25.2000.cots' );
31
LinkPkgArchive ( 'debian_packager', '1.25.0000.cr' );
32
 
33
#
34
#   Generate Files
35
BuildDescpkg    ();
36
BuildMake       ();
37