Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
3410 dpurdie 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
#
15
$MAKELIB_PL     = "$ENV{ GBE_TOOLS }/makelib.pl";
16
$BUILDLIB_PL    = "$ENV{ GBE_TOOLS }/buildlib.pl";
17
 
1053 mhunt 18
require         "$BUILDLIB_PL";
19
require         "$MAKELIB_PL";
3404 dpurdie 20
 
3410 dpurdie 21
BuildPlatforms  ( 'GENERIC' );
22
BuildName	    ( 'dpkg_management 4.0.0000 cr' );
1053 mhunt 23
BuildInterface  ( 'interface' );
24
BuildDescpkg	();   
3404 dpurdie 25
BuildMake	    ();
1053 mhunt 26