Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
6242 dpurdie 1
########################################################################
2
# COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.
407 dpurdie 3
#
4
# Module name   : build.pl
5
# Module type   : Makefile system
6242 dpurdie 6
# Compiler(s)   : Perl
7
# Environment(s): jats
407 dpurdie 8
#
6242 dpurdie 9
# Description   : Jats build file for debian_packager
10
#
11
#......................................................................#
12
#
407 dpurdie 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
 
6242 dpurdie 21
 
407 dpurdie 22
#..     Product configuration
23
#
24
BuildPlatforms  ( 'GENERIC');
25
 
6491 sdenys 26
BuildName       ( 'debian_packager 1.25.0000 cr' );
407 dpurdie 27
BuildInterface  ( 'local' );
28
BuildInterface  ( 'interface' );
29
 
30
#   Specify subdirectories to process
31
#
32
BuildSubDir    ( 'src' );
33
 
34
#
35
#   Generate the descpkg and Makefiles
36
BuildDescpkg   ();
37
BuildMake      ();
38