Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
6247 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
#
6555 dpurdie 29
MakeDebianPackage ('!WIN', '--Script=PackageApp.pl', '--DeployMode' );
30
MakeNsisPackage   ( 'WIN', '--Script=setup.nsi', '--Verbose=2');
6247 dpurdie 31
 
32
#.............................................................................
33
# Packaging definitions
34
#
35
#
36
PackageFile ( '*'   , 'descpkg' );
37
 
38
#.............................................................................
39
# Finally generate the makefile
40
#
41
MakefileGenerate();
42
 
43
#..  Successful termination
44
1;