Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
2850 dpurdie 1
########################################################################
2
# Copyright (C) 1998-2011 Vix Technology, All rights reserved
3
#
4
# Module name   :build.pl
5
# Module type   : Makefile system
6
# Compiler(s)   : Perl
7
#Environment(s): jats
8
#
9
# Description   : Jats build file for TexasInstrumentsMsp430
10
#
11
#......................................................................#
12
#..     Build system
13
#
14
$MAKELIB_PL     = "$ENV{ GBE_TOOLS }/makelib.pl";
15
$BUILDLIB_PL    = "$ENV{ GBE_TOOLS }/buildlib.pl";
16
 
17
require         "$BUILDLIB_PL";
18
require         "$MAKELIB_PL";
19
 
20
#..     Toolset configuration
21
#
22
 
23
#..     Product configuration
24
#
25
BuildPlatforms ( 'WIN32,--OnlyProd,--NoToolSet' );
26
 
27
BuildName       ( 'TexasInstrumentsMsp430', '3.2.3.0000', 'tool', '--RelaxedVersion' );
28
 
29
BuildInterface  ( 'local' );
30
BuildInterface  ( 'interface' );
31
 
32
#..     External Packages
33
#           Use LinkpkgArchive or BuildPkgArchive
34
#
35
LinkPkgArchive ( 'nsis'         , '2.46.0000.cots' );
2852 dpurdie 36
LinkPkgArchive ( 'nsis_packager', '2.1.4000.cr' );
2850 dpurdie 37
 
38
#
39
#   Specify subdirectories to process
40
#
41
BuildSubDir    ( 'src' );
42
 
43
#
44
#   Generate Files
45
BuildDescpkg   ();
46
BuildMake      ();
47