Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1319 dpurdie 1
########################################################################
2
# Copyright (C) 1998-2012 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 CotsWithRippleVersion
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
 
22
#..     Product configuration
23
#
24
BuildPlatforms ('SOLARIS');
25
BuildPlatforms ('LINUX_EMU');
26
BuildPlatforms ('WIN32');
27
 
28
 
29
BuildName       ( 'CotsWithRippleVersion', 'hoopla2_x.0000', 'cots', '--RelaxedVersion' );
30
BuildInterface  ( 'local' );
31
BuildInterface  ( 'interface' );
32
 
33
#..     Build source tree makefile(s)
34
#       LinkPkgArchive or BuildPkgArchive
35
#
36
 
37
#   Specify subdirectories to process
38
#
39
BuildSubDir    ( 'src' );
40
 
41
#
42
#   Generate the descpkg and Makefiles
43
BuildDescpkg   ();
44
BuildMake      ();
45