Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6868 dpurdie 1
########################################################################
2
# COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.
3
#
4
# Module name   : build.pl
5
# Module type   : Makefile system
6
# Compiler(s)   : Perl
7
# Environment(s): jats
8
#
9
# Description   : Jats build file for VIXcentos7LTS_VMcfg
10
#
11
#......................................................................#
12
 
13
#..     Build system
14
#
15
$MAKELIB_PL     = "$ENV{ GBE_TOOLS }/makelib.pl";
16
$BUILDLIB_PL    = "$ENV{ GBE_TOOLS }/buildlib.pl";
17
 
18
require         "$BUILDLIB_PL";
19
require         "$MAKELIB_PL";
20
 
21
#..     Toolset configuration
22
#
23
 
24
#..     Product configuration
25
#
26
BuildPlatforms  ( 'RHEL7', '--OnlyProd' );
27
 
28
BuildName       ( 'VIXcentos7LTS_VMcfg', '1.0.0000', 'tool', '--RelaxedVersion' );
29
BuildInterface  ( 'local' );
30
BuildInterface  ( 'interface' );
31
 
32
#..     External Packages
33
#       Use LinkpkgArchive or BuildPkgArchive
34
#
35
LinkPkgArchive ( 'debian_packager', '1.24.2000.cr' );
36
 
37
#
38
#   Specify subdirectories to process
39
#
40
BuildSubDir     ('src' );
41
 
42
#
43
#   Generate Files
44
BuildDescpkg    ();
45
BuildMake       ();
46