Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
6177 dpurdie 1
# COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.
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
#..     Toolset configuration
19
#
20
 
21
#..     Product configuration
22
#
23
BuildAlias      ( 'WIN',    'WIN32' );
24
BuildAlias      ( 'SUN',    'SOLARIS' );
25
#BuildAlias      ( 'SUNX',    'SOLARIS_I386' );
26
 
27
 
28
BuildName       ( 'ddp_win_sparc 00.00.00 test' );
29
BuildSnapshot   ();
30
BuildAccessPerms();
31
BuildInterface  ( 'local' );
32
BuildInterface  ( 'interface' );
33
 
34
#..     Build source tree makefile(s)
35
#
36
 
37
#
38
#   Specify subdirectories to process
39
#
40
BuildSubDir    ( 'src' );
41
 
42
#
43
#   Generate the descpkg and Makefiles
44
BuildDescpkg   ();
45
BuildMake      ();
46