Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
1291 dpurdie 1
########################################################################
2
# Copyright (C) Vix Technology, All rights reserved
3
#
4
# Module name   : build.pl
5
# Module type   : JATS Build File
6
# Environment(s): jats
7
#
8
# Description   : Jats build file for SubversionServerSupport
9
#
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' );
23
 
4226 dpurdie 24
BuildName       ( 'SubversionServerSupport 1.1.0000 tool' );
1291 dpurdie 25
BuildInterface  ( 'interface' );
26
 
27
#
28
#   Specify subdirectories to process
29
#
30
BuildSubDir    ( 'src' );
31
 
32
#
33
#   Generate Files
34
BuildDescpkg   ();
35
BuildMake      ();
36