Subversion Repositories DevTools

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6242 dpurdie 1
########################################################################
2
# COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.
3
# Module name   : makefile.pl
4
# Module type   : JATS Makefile
5
# Environment(s): JATS Build System
407 dpurdie 6
#
6242 dpurdie 7
# Description   : Makefile for debian_packager 
407 dpurdie 8
#
6242 dpurdie 9
#......................................................................#
407 dpurdie 10
#
6242 dpurdie 11
# exec build system
12
#
407 dpurdie 13
require "$ARGV[1]";
14
 
15
# Build platform definitions ..
16
#
17
Platform( '*' );
18
 
19
############################################################################
20
# Packaging definitions
21
#
6242 dpurdie 22
PackageFile ( '*'   , 'descpkg' );
407 dpurdie 23
PackageFile ( '*'   , '--DirTree=tools' );
24
PackageFile ( '*'   , '--DirTree=gbe' );
25
 
6242 dpurdie 26
# Need this package at run-time as well as build-time
27
#   Duplicate the package into dpkg_acrhive
28
Src ('*', 'gbe/DIRECTIVES/PackagerUtils.pm' );
29
PackageFile ( '*', 'PackagerUtils.pm', '--Subdir=tools/scripts');
30
 
407 dpurdie 31
#.............................................................................
32
# Finally generate the makefile
33
#
34
MakefileGenerate();
35
 
36
#..  Successful termination
37
1;
38