Subversion Repositories DevTools

Rev

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