Subversion Repositories DevTools

Rev

Rev 3404 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3404 Rev 3410
Line -... Line 1...
-
 
1
########################################################################
-
 
2
# Copyright (C) 1998-2013 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 dpkg_management
-
 
10
#
-
 
11
#......................................................................#
-
 
12
#
-
 
13
#..     Build system
-
 
14
#
1
$MAKELIB_PL  	= "$ENV{ GBE_TOOLS }/makelib.pl";
15
$MAKELIB_PL     = "$ENV{ GBE_TOOLS }/makelib.pl";
2
$BUILDLIB_PL 	= "$ENV{ GBE_TOOLS }/buildlib.pl";
16
$BUILDLIB_PL    = "$ENV{ GBE_TOOLS }/buildlib.pl";
-
 
17
 
3
require         "$BUILDLIB_PL";
18
require         "$BUILDLIB_PL";
4
require         "$MAKELIB_PL";
19
require         "$MAKELIB_PL";
5
BuildPlatforms  ( 'WIN32', 'JAVA,--Version=1.5' );
-
 
6
BuildName	    ( 'dpkg_management 3.0.6000 cr' );
-
 
7
 
20
 
8
BuildInterface	( 'local' );
21
BuildPlatforms  ( 'GENERIC' );
-
 
22
BuildName	    ( 'dpkg_management 4.0.0000 cr' );
9
BuildInterface  ( 'interface' );
23
BuildInterface  ( 'interface' );
10
BuildDescpkg	();   
24
BuildDescpkg	();   
11
BuildVersion	();   
-
 
12
BuildMake	    ();
25
BuildMake	    ();
13
 
26