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
4995 dpurdie 5
# Environment(s): JATS
229 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
#
4995 dpurdie 20
BuildPlatforms ('WIN32',            '--Alias=WIN');
21
BuildPlatforms ('MOS68K', 'MOSCF',  '--Alias=MOS');
229 dpurdie 22
 
23
 
24
BuildName       ( 'BUILDNAME xx.xx.xx cr' );
25
BuildInterface  ( 'local' );
26
BuildInterface  ( 'interface' );
27
 
28
#..     External Packages
29
#       Use LinkpkgArchive or BuildPkgArchive
30
#
31
LinkPkgArchive ( 'Package'        , 'Version' );
32
 
33
#
34
#   Specify subdirectories to process
35
#
36
BuildSubDir     ('src' );
37
 
38
#
39
#   Generate Files
40
#BuildVersion    ();                                # Optional
41
BuildDescpkg    ();
42
BuildMake       ();
43