Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
5209 dpurdie 1
########################################################################
2
# Copyright (C) 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 lxr_manager
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
#..     Product configuration
22
#
6811 dpurdie 23
BuildPlatforms  ( 'UBUNTU16,--OnlyProd' );
5209 dpurdie 24
 
6811 dpurdie 25
BuildName       ( 'lxr_manager', '2.0.3.4000', 'tool', '--RelaxedVersion' );
5209 dpurdie 26
BuildInterface  ( 'interface' );
27
 
28
#
29
#   Specify subdirectories to process
30
#
31
BuildSubDir    ( 'src' );
32
 
6811 dpurdie 33
LinkPkgArchive ('debian_packager','1.23.0000.cr');
5209 dpurdie 34
LinkPkgArchive ('debian_dpkg','1.13.25.2000.cots');
35
 
36
#
37
#   Generate Files
38
BuildDescpkg   ();
39
BuildMake      ();
40