Subversion Repositories DevTools

Rev

Rev 6555 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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