Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
229 dpurdie 1
# Copyright (C) 1998-2007 ERG Limited, All rights reserved
2
#
3
# Module name   : jats
4
# Module type   : Makefile system
5
# Environment(s): Generic
6
#
7
# Description:    build.pl to create the 'core_devl' package
8
#                 This is really 'jats', but for historical reasons
9
#                 it will always be called core_devl
10
#.........................................................................#
11
 
12
#..     Build system
13
#
14
$MAKELIB_PL     = "$ENV{ GBE_TOOLS }/makelib.pl";
15
$BUILDLIB_PL    = "$ENV{ GBE_TOOLS }/buildlib.pl";
16
 
17
require         "$BUILDLIB_PL";
18
require         "$MAKELIB_PL";
19
 
20
#..     Product configuration
21
#
22
BuildPlatforms   ( 'GENERIC,--OnlyProd' );
23
 
387 dpurdie 24
BuildName       ( 'core_devl 2.100.4000 cr' );
229 dpurdie 25
BuildInterface  ( 'interface' );
26
 
27
#..     External Packages
28
#       There MUST not be ANY external packages
29
#
30
 
31
#
32
#   Specify subdirectories to process
33
#
34
BuildSubDir    ( 'BUILD' );
35
 
36
#
37
#   Generate Files
38
BuildDescpkg   ();
39
BuildMake      ();
40