Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1684 dpurdie 1
# Copyright (C) 1998-2010 ERG Limited, All rights reserved
2
#
3
# Module name   : Makefile.pl
4
# Module type   : JATS Build File
5
# Environment(s): JATS Build System
6
#
7
# Description:    makefile.pl for package zendguard_tools
8
#
9
#.........................................................................#
10
 
11
die "Usage: Makefile.pl rootdir Makelib.pl\n"
12
    unless( $#ARGV+1 >= 2 );
13
require "$ARGV[1]";
14
 
15
#
16
# Build platform definitions ..
17
#
18
Platform( '*' );
19
 
20
#.............................................................................
21
# Packaging definitions
22
#
23
PackageFile ( '*', '--DirTree=gbe' );
24
PackageFile ( '*', '--DirTree=tools' );
25
PackageFile ( '*', 'descpkg' );
26
 
27
#.............................................................................
28
# Finally generate the makefile
29
#
30
MakefileGenerate();
31
 
32
#..  Successful termination
33
1;