Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
7300 dpurdie 1
# COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.
229 dpurdie 2
#
3
# Module name   : build.pl
4
# Module type   : Makefile system
4995 dpurdie 5
# Environment(s): JATS
229 dpurdie 6
#
7
# Description:    Root build for UD
8
#
9
#.........................................................................#
10
 
11
#..     Build system
12
#
13
$MAKELIB_PL     = "$ENV{ 'GBE_TOOLS' }/makelib.pl";
14
$BUILDLIB_PL    = "$ENV{ 'GBE_TOOLS' }/buildlib.pl";
15
 
16
require         "$BUILDLIB_PL";
17
require         "$MAKELIB_PL";
18
 
19
#..     Toolset configuration
20
#
21
 
22
#..     Product configuration
23
#
24
BuildAlias      ( 'LMOS,--Target',   'LMOS_WIN32', 'LMOS_linux_i386' );
25
BuildAlias      ( 'MOS,--Target',    'MOS68K', 'MOSCF' );
26
 
27
BuildProduct    ( 'PCP',    'LMOS,--OnlyDebug', 'MOS68K,--OnlyDebug');
28
 
29
 
30
BuildName       ( 'MyMosProject 1.0.0.example' );
31
BuildInterface  ( 'local' );
32
BuildInterface  ( 'interface' );
33
 
34
#..     Build source tree makefile(s)
35
#           Use LinkPkgArchive or BuildPkgArchive
36
# 
37
LinkPkgArchive ( 'daf_tools', '25.1.0000.cr' );
38
LinkPkgArchive ( 'mos_api', '5.11.0.cr' );
39
LinkPkgArchive ( 'mos_pcp5522', '5.13.0.cr' );
40
LinkPkgArchive ( 'mos_tools', '1.0.0.cr' );
41
LinkPkgArchive ( 'lmos', '25.2.1.cr' );
42
 
43
 
44
#####################################################################
45
 
46
 
47
#
48
#   Specify subdirectories to process
49
#
50
BuildSubDir     ('static-lib');
51
BuildSubDir     ('thx-module');
52
 
53
#
54
#   Generate the Makefile
55
BuildDescpkg    ();
56
BuildMake       ();
57