Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2014 mhunt 1
# Copyright (C) 1998-2009 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 cpptasks
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=jar' );
28
 
29
#..
30
#
31
Src         ( '*'   , 'descpkg' );
32
PackageFile ( '*'   , 'descpkg' );
33
 
34
#.............................................................................
35
# Finally generate the makefile
36
#
37
MakefileGenerate();
38
 
39
#..  Successful termination
40
1;