Subversion Repositories DevTools

Rev

Rev 3991 | Rev 4995 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3991 dpurdie 1
# Copyright (C) 1998-2004 ERG Limited, All rights reserved
2
#
3
# Module name   : build.pl
4
# Module type   : Makefile system
5
# Environment(s): n/a
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
#..     Toolset configuration
19
#
20
 
21
#..     Product configuration
22
#
23
BuildPlatforms  ( 'DEVLINUX' );
24
 
25
BuildName       ( 'BUILDNAME xx.xx.xx cr' );
26
BuildInterface  ( 'local' );
27
BuildInterface  ( 'interface' );
28
 
29
#..     External Packages
30
#       Use LinkpkgArchive or BuildPkgArchive
31
#
32
LinkPkgArchive ( 'debian_dpkg'    , '1.13.25.1000.cots' );
33
LinkPkgArchive ( 'debian_packager', '1.9.0000.cr' );
34
 
35
LinkPkgArchive ( 'Package'        , 'Version' );
36
 
37
#
38
#   Specify subdirectories to process
39
#
40
BuildSubDir     ('src' );
41
 
42
#
43
#   Generate Files
44
BuildDescpkg    ();
45
BuildMake       ();
46