Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
229 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
BuildAlias      ( 'WIN',    'WIN32' );                  # All the WIN Platforms
24
BuildAlias      ( 'MOS',    'MOS68K', 'MOSCF' );        # All the MOS Platforms
25
 
26
 
27
BuildName       ( 'BUILDNAME xx.xx.xx cr' );
28
BuildSnapshot   ();
29
BuildAccessPerms();
30
BuildInterface  ( 'local' );
31
BuildInterface  ( 'interface' );
32
 
33
#..     External Packages
34
#       Use LinkpkgArchive or BuildPkgArchive
35
#
36
LinkPkgArchive ( 'Package'        , 'Version' );
37
 
38
#
39
#   Specify subdirectories to process
40
#
41
BuildSubDir     ('src' );
42
 
43
#
44
#   Generate Files
45
#BuildVersion    ();                                # Optional
46
BuildDescpkg    ();
47
BuildMake       ();
48