Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1038 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 dpkg_blat
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
#
28
PackageFile ( '*', '--Subdir=pkg', '--DirTree=blat' );
29
PackageFile ( '*', '--Subdir=pkg', '--DirTree=etc' );
30
PackageFile ( '*', '--Subdir=pkg', '--DirTree=targetBin' );
31
PackageFile ( '*', '--Subdir=pkg', '--DirTree=ssh' );
32
 
33
#..
34
#
35
Src         ( '*'   , 'descpkg' );
36
PackageFile ( '*'   , 'descpkg' );
37
 
38
#.............................................................................
39
# Finally generate the makefile
40
#
41
MakefileGenerate();
42
 
43
#..  Successful termination
44
1;