Subversion Repositories DevTools

Rev

Rev 6500 | Go to most recent revision | Details | Compare with Previous | 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');
6555 dpurdie 24
BuildPlatforms ('GENERIC_WIN32', '--OnlyProd', '--NoToolSet', '--Alias=WIN');
6247 dpurdie 25
 
6555 dpurdie 26
BuildName       ( 'jats-installer 1.0.0000.cr' );
6247 dpurdie 27
BuildInterface  ( 'interface' );
28
 
29
#..     External Packages
30
#
6555 dpurdie 31
LinkPkgArchive ( 'debian_dpkg', '1.13.25.4000.cots' );
32
LinkPkgArchive ( 'debian_packager', '1.26.0000.cr' );
33
LinkPkgArchive ( 'nsis', '2.46.1000.cots' );
34
LinkPkgArchive ( 'nsis_library', '1.3.4000.cr' );
35
LinkPkgArchive ( 'nsis_packager', '2.4.0000.cr' );
36
LinkPkgArchive ( 'nsis_path', '2.0.1000.cr' );
6247 dpurdie 37
 
38
#
39
#   Generate Files
40
BuildDescpkg    ();
41
BuildMake       ();
42