Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1031 dpurdie 1
# Copyright (C) 1998-2008 ERG Limited, All rights reserved
2
#
3
# Module name   : cabinet_packager
4
# Module type   : JATS Plugin
5
# Environment(s): JATS
6
#
7
# Description:    makefile.pl for package cabinet_packager
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
#   Define the source files
22
#
23
 
24
#.............................................................................
25
# Packaging definitions
26
#
27
PackageFile ( '*', '--DirTree=gbe' );
28
PackageFile ( '*', '--DirTree=tools' );
29
 
30
#..
31
#
32
Src         ( '*'   , 'descpkg' );
33
PackageFile ( '*'   , 'descpkg' );
34
 
35
#.............................................................................
36
# Finally generate the makefile
37
#
38
MakefileGenerate();
39
 
40
#..  Successful termination
41
1;