Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
3993 dpurdie 1
########################################################################
2
# Copyright (C) 1998-2013 Vix Technology, 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 ubuntu12.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  ( 'UBUNTU12', '--OnlyProd' );
27
 
28
BuildName       ( 'VIXubuntu1204LTS_VMcfg', '1.0.0000.tool' );
29
BuildInterface  ( 'local' );
30
BuildInterface  ( 'interface' );
31
 
32
#..     External Packages
33
#       Use LinkpkgArchive or BuildPkgArchive
34
#
35
LinkPkgArchive ( 'debian_dpkg'    , '1.13.25.1000.cots' );
36
LinkPkgArchive ( 'debian_packager', '1.9.0000.cr' );
37
 
38
#
39
#   Specify subdirectories to process
40
#
41
BuildSubDir     ('src' );
42
 
43
#
44
#   Generate Files
45
BuildDescpkg    ();
46
BuildMake       ();
47