Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
5209 dpurdie 1
########################################################################
2
# Copyright (C) Vix Technology, 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 lxr_manager
9
#
10
#......................................................................#
11
#
12
# exec build system
13
#
14
die "Usage: Makefile.pl rootdir Makelib.pl\n" unless( $#ARGV+1 >= 2 );
15
require "$ARGV[1]";
16
#
17
# Build platform definitions ..
18
#
19
Platform( '*' );
20
 
21
############################################################################
22
#   Define the source files
23
#
24
 
25
#.............................................................................
26
# Packaging definitions
27
#
5222 dpurdie 28
MakeDebianPackage ('UBUNTU14', '--Script=PackageApp.pl' , '--DeployMode', '--NoArch' );
5209 dpurdie 29
 
30
#..
31
#
32
Src         ( '*'   , 'descpkg' );
33
PackageFile ( '*'   , 'descpkg' );
34
 
35
#.............................................................................
36
# Finally generate the makefile
37
#
38
MakefileGenerate();
39
 
40
#..  Successful termination
41
1;