Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
3991 dpurdie 1
########################################################################
7300 dpurdie 2
# COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.
3991 dpurdie 3
#
4
# Module name   : makefile.pl
5
# Module type   : JATS Makefile
6
# Environment(s): JATS Build System
7
#
8
# Description   : Makefile for
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 ('*', '--Script=PackageApp.pl' );
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;