Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
7300 dpurdie 1
# COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.
3991 dpurdie 2
#
3
# Module name   : build.pl
4
# Module type   : Makefile system
4995 dpurdie 5
# Environment(s): JATS
3991 dpurdie 6
#
7
# Description:    build.pl Template
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  ( 'DEVLINUX' );
21
 
22
BuildName       ( 'BUILDNAME xx.xx.xx cr' );
23
BuildInterface  ( 'local' );
24
BuildInterface  ( 'interface' );
25
 
26
#..     External Packages
27
#       Use LinkpkgArchive or BuildPkgArchive
28
#
29
LinkPkgArchive ( 'debian_dpkg'    , '1.13.25.1000.cots' );
30
LinkPkgArchive ( 'debian_packager', '1.9.0000.cr' );
31
 
32
LinkPkgArchive ( 'Package'        , 'Version' );
33
 
34
#
35
#   Specify subdirectories to process
36
#
37
BuildSubDir     ('src' );
38
 
39
#
40
#   Generate Files
41
BuildDescpkg    ();
42
BuildMake       ();
43