Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
6821 dpurdie 1
########################################################################
2
# Copyright (c) VIX TECHNOLOGY (AUST) LTD
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 ubuntu16.04LTS_VM
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  ( 'UBUNTU16', '--OnlyProd' );
27
 
6825 dpurdie 28
BuildName       ( 'VIXubuntu1604LTS_VMcfg', '1.1.0000', 'tool', '--RelaxedVersion' );
6821 dpurdie 29
BuildInterface  ( 'local' );
30
BuildInterface  ( 'interface' );
31
 
32
#..     External Packages
33
#       Use LinkpkgArchive or BuildPkgArchive
34
#
6823 dpurdie 35
LinkPkgArchive ( 'debian_dpkg', '1.13.25.4000.cots' );
6825 dpurdie 36
LinkPkgArchive ( 'debian_packager', '1.26.0000.cr' );
6821 dpurdie 37
 
38
#
39
#   Specify subdirectories to process
40
#
41
BuildSubDir     ('src' );
42
 
43
#
44
#   Generate Files
45
BuildDescpkg    ();
46
BuildMake       ();
47