Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
7556 dpurdie 1
########################################################################
2
# COPYRIGHT - VIX IP PTY LTD ("VIX"). 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 packageDirTemplate
10
# 
11
#   This is a sample build.pl amd makefile.pl to package up an entire 
12
#   directory into dpkg_archive. The operations are machine independent and
13
#   thus the package is built for a 'GENERIC' target.
14
#
15
#......................................................................#
16
#
17
#..     Build system
18
#
19
$MAKELIB_PL     = "$ENV{ GBE_TOOLS }/makelib.pl";
20
$BUILDLIB_PL    = "$ENV{ GBE_TOOLS }/buildlib.pl";
21
 
22
require         "$BUILDLIB_PL";
23
require         "$MAKELIB_PL";
24
 
25
#..     Product configuration
26
#
27
BuildPlatforms  ( 'GENERIC' );
28
 
29
BuildName       ( 'packageDirTemplate 00.00.00 cr' );
30
BuildInterface  ( 'interface' );
31
 
32
#
33
#   Specify subdirectories to process
34
#
35
BuildSubDir    ( 'src' );
36
 
37
#
38
#   Generate Files
39
BuildDescpkg   ();
40
BuildMake      ();
41