Subversion Repositories DevTools

Rev

Rev 361 | Blame | Compare with Previous | Last modification | View Log | RSS feed

# Copyright (C) 1998-2007 ERG Limited, All rights reserved
#
# Module name   : Makefile.pl
# Module type   : Makefile system
# Compiler(s)   : ANSI C
# Environment(s): n/a
#
# Description:    makefile.pl to create the 'jats' packag
#
#.........................................................................#

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

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

############################################################################
#   Invoke a script to do the real work
#   The process of 'building' this package is really a packaging process
#
GenerateFiles ( '*', "--Script=MakePackage.pl",
                     "--NoGenerate",
                     "--Text=Releasing JATS",
                     "--Var(InterfaceDir)",
                     "--Var(BuildName)",
                     "--Var(BuildVersion)",
                     "--Var(PackageDir)",
                     "--Var(BuildRoot)",
                     "--Var(Verbose)",
                     );

#.............................................................................
# Packaging definitions
#
PackageFile ( '*'   , 'descpkg' );

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

#..  Successful termination
1;