Subversion Repositories DevTools

Rev

Rev 6254 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

########################################################################
# COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.
#
# Module name   : makefile.pl
# Module type   : JATS Makefile
# Environment(s): JATS Build System
#
# Description   : Makefile for jats installer
#
#......................................................................#
#
# exec build system
#
require "$ARGV[1]";

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

############################################################################
#   Define the source files
#

#
#   Create a Debian Package around the files
#   Use a script to invoke the provided builder scripts
#
MakeDebianPackage ('!WIN', '--Script=PackageApp.pl', '--DeployMode' );
MakeNsisPackage   ( 'WIN', '--Script=setup.nsi', '--Verbose=2');
                          
#.............................................................................
# Packaging definitions
#
#
PackageFile ( '*'   , 'descpkg' );

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

#..  Successful termination
1;