Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1612 dpurdie 1
# Copyright (C) 1998-2008 ERG Limited, All rights reserved
2
#
3
# Module name   : wsdl-tools
4
# Module type   : JATS Plugin
5
# Environment(s): JATS
6
#
7
# Description:    Create Programs
8
#
9
#.........................................................................#
10
 
11
die "Usage: Makefile.pl rootdir Makelib.pl\n"
12
    unless( $#ARGV+1 >= 2 );
13
require "$ARGV[1]";
14
 
15
# Build platform definitions ..
16
#
17
Platform( '*' );
18
 
19
############################################################################
20
#   Define the source files
21
#
22
Src        ( '*'    , "WsdlExtract.cs" );
23
 
24
#
25
#   Build the program
26
Prog       ( '*'    , "WsdlExtract",
27
                      "WsdlExtract.cs", '--Console'
28
                     );
29
 
30
#.............................................................................
31
# Packaging definitions
32
#
33
PackageProg ('*', @PROGS, '--Tool=tools/bin', '--Extras=none' );
34
 
35
#
36
#   Package up toolset extensionto make playing with WSDLs easy
37
#
38
Src ( '*', 'MakeWsdls.pm' );
39
PackageFile ('*', 'MakeWsdls.pm', '--Gbe=DIRECTIVES' );
40
 
41
 
42
#.............................................................................
43
# Finally generate the makefile
44
#
45
MakefileGenerate();
46
 
47
#..  Successful termination
48
1;
49