Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
1139 dpurdie 1
########################################################################
2
#Copyright (C) 2010 Vix-ERG Limited, 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 NSIS Example
10
#
11
#......................................................................#
12
#
13
#..     Build system
14
#
15
$MAKELIB_PL     = "$ENV{ GBE_TOOLS }/makelib.pl";
16
$BUILDLIB_PL    = "$ENV{ GBE_TOOLS }/buildlib.pl";
17
 
18
require         "$BUILDLIB_PL";
19
require         "$MAKELIB_PL";
20
 
21
#..     Product configuration
22
#
23
BuildPlatforms ( 'WIN32,--OnlyProd,--NoToolSet' );
24
 
25
BuildName       ( 'nsis-example 1.2.3004 test' );
26
 
27
BuildInterface  ( 'local' );
28
BuildInterface  ( 'interface' );
29
 
30
#..     External Packages
31
#           Use LinkpkgArchive or BuildPkgArchive
32
#
33
LinkPkgArchive ( 'nsis'         , '2.46.0000.cots' );
34
LinkPkgArchive ( 'nsis_packager', '1.0.0000.cr' );
35
 
36
#
37
# Source of files to install
38
BuildPkgArchive ('AT91load', '1.0.2.cr' );
39
 
40
#
41
#   Specify subdirectories to process
42
#
43
BuildSubDir    ( 'src' );
44
 
45
#
46
#   Generate Files
47
BuildDescpkg   ();
48
BuildMake      ();
49