Subversion Repositories DevTools

Rev

Blame | Last modification | View Log | RSS feed

# Copyright (C) 1998-2008 ERG Limited, All rights reserved
#
# Module name   : wsdl-tools
# Module type   : JATS Plugin
# Environment(s): JATS
#
# Description:    Create Programs
#
#.........................................................................#

die "Usage: Makefile.pl rootdir Makelib.pl\n"
    unless( $#ARGV+1 >= 2 );
require "$ARGV[1]";

# Build platform definitions ..
#
Platform( '*' );

############################################################################
#   Define the source files
#
Src        ( '*'    , "WsdlExtract.cs" );

#
#   Build the program
Prog       ( '*'    , "WsdlExtract",
                      "WsdlExtract.cs", '--Console'
                     );

#.............................................................................
# Packaging definitions
#
PackageProg ('*', @PROGS, '--Tool=tools/bin', '--Extras=none' );

#
#   Package up toolset extensionto make playing with WSDLs easy
#
Src ( '*', 'MakeWsdls.pm' );
PackageFile ('*', 'MakeWsdls.pm', '--Gbe=DIRECTIVES' );


#.............................................................................
# Finally generate the makefile
#
MakefileGenerate();

#..  Successful termination
1;