Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
4995 dpurdie 1
# Copyright (c) VIX TECHNOLOGY (AUST) LTD
229 dpurdie 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
#..     Product configuration
19
#
20
BuildPlatforms   ( 'GENERIC' );
21
 
22
BuildName       ( 'BUILDNAME xx.xx.xx xx' );
23
BuildSnapshot   ();
24
BuildAccessPerms();
25
BuildInterface  ( 'interface' );
26
 
27
#..     External Packages
28
#       Use LinkPkgArchive or BuildPkgArchive
29
#
30
LinkPkgArchive ( 'Package'        , 'Version' );
31
 
32
#
33
#   Specify subdirectories to process
34
#
35
BuildSubDir    ( 'src' );
36
 
37
#
38
#   Generate Files
39
BuildDescpkg   ();
40
BuildMake      ();
41