Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
4466 dpurdie 1
########################################################################
2
# Copyright (c) VIX TECHNOLOGY (AUST) LTD
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 
10
#
11
#......................................................................#
12
#
13
#..     Build system
14
#
15
$MAKELIB_PL     = "$ENV{ GBE_TOOLS }/makelib.pl";
16
$BUILDLIB_PL    = "$ENV{ GBE_TOOLS }/buildlib.pl";
17
 
229 dpurdie 18
require         "$BUILDLIB_PL";
19
require         "$MAKELIB_PL";
20
 
4536 dpurdie 21
BuildPlatforms  ( 'JAVA,--Version=1.4');        # build with 1.4 - its the lowest common denominator on all of our machines
4466 dpurdie 22
BuildName       ( 'jats_java 2.0.0000 cr' );
229 dpurdie 23
 
4466 dpurdie 24
BuildSubDir    ( 'src' );
25
BuildSubDir    ( 'srcRM' );
26
BuildSubDir    ( 'srcCQ' );
27
 
229 dpurdie 28
BuildInterface  ( 'interface' );
29
BuildPkgArchive ( 'oraclient', '9.2.0' );
30
BuildDescpkg	();
31
BuildMake	();
32