Subversion Repositories DevTools

Rev

Rev 6555 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
6560 dpurdie 1
########################################################################
2
# COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.
3
#
4
# Module name   : makefile.pl
5
# Module type   : JATS Makefile
6
# Environment(s): JATS Build System
7
#
8
# Description   : Makefile for jats installer
9
#
10
#......................................................................#
11
#
12
# exec build system
13
#
14
require "$ARGV[1]";
15
 
16
#
17
# Build platform definitions ..
18
#
19
Platform( '*' );
20
 
21
############################################################################
22
#   Define the source files
23
#
24
 
25
#
26
#   Create a Debian Package around the files
27
#   Use a script to invoke the provided builder scripts
28
#
29
MakeDebianPackage ('!WIN', '--Script=PackageApp.pl', '--DeployMode' );
30
MakeNsisPackage   ( 'WIN', '--Script=setup.nsi', '--Verbose=2');
31
 
32
#.............................................................................
33
# Packaging definitions
34
#
35
#
36
PackageFile ( '*'   , 'descpkg' );
37
PackageFile ( '*'   , 'PostInstall.sh' );
38
 
39
#.............................................................................
40
# Finally generate the makefile
41
#
42
MakefileGenerate();
43
 
44
#..  Successful termination
45
1;