Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
4192 dpurdie 1
########################################################################
6177 dpurdie 2
# COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.
4192 dpurdie 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 checkReg
10
#                 checkReg is a native utility used by JATS to verify correct regkey values
11
#
12
#......................................................................#
13
#
14
#..     Build system
15
#
16
$MAKELIB_PL     = "$ENV{ GBE_TOOLS }/makelib.pl";
17
$BUILDLIB_PL    = "$ENV{ GBE_TOOLS }/buildlib.pl";
18
 
19
require         "$BUILDLIB_PL";
20
require         "$MAKELIB_PL";
21
 
22
#..     Product configuration
23
#
24
BuildPlatforms ('WIN32,--OnlyProd');
25
BuildPlatforms ('VS2012,--OnlyProd');
26
 
27
 
28
BuildName       ( 'checkReg 0.0.0000 cr' );
29
BuildInterface  ( 'local' );
30
BuildInterface  ( 'interface' );
31
 
32
#   Specify subdirectories to process
33
#
34
BuildSubDir    ( 'src' );
35
 
36
#
37
#   Generate the descpkg and Makefiles
38
BuildDescpkg   ();
39
BuildMake      ();
40