Subversion Repositories DevTools

Rev

Rev 1467 | Rev 4069 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1467 alewis 1
# Copyright (C) 1998-2007 ERG Limited, All rights reserved
2
#
3
# Module name   : Makefile.pl
4
# Module type   : Makefile system
5
# Compiler(s)   : ANSI C
6
# Environment(s): n/a
7
#
8
# Description:    makefile.pl for package 
9
#
10
#.........................................................................#
11
 
12
die "Usage: Makefile.pl rootdir Makelib.pl\n"
13
    unless( $#ARGV+1 >= 2 );
14
require "$ARGV[1]";
15
 
16
#
17
# Build platform definitions ..
18
#
19
Platform( '*' );
20
 
21
############################################################################
22
#   Define the source files
23
#
24
 
25
#.............................................................................
26
# Packaging definitions
27
#
28
#
29
Src         ( '*'   , 'descpkg' );
30
PackageFile ( '*'   , 'descpkg' );
31
 
4064 dpurdie 32
Src         ( '*'   , 'shellbuild.bash' );
33
PackageFile ( '*'   , 'shellbuild.bash', '--Subdir=tools/scripts', '--Executable' );
1467 alewis 34
Src         ( '*'   , 'debbuild.pl' );
35
PackageFile ( '*'   , 'debbuild.pl', '--Subdir=tools/scripts' );
36
Src         ( '*'   , 'postinstall' );
37
PackageFile ( '*'   , 'postinstall', '--Subdir=tools/scripts' );
38
 
39
Src         ( '*'   , 'shellbuild.pm' );
40
PackageFile ( '*'   , 'shellbuild.pm', '--Gbe=DIRECTIVES' );
41
 
42
#.............................................................................
43
# Finally generate the makefile
44
#
45
MakefileGenerate();
46
 
47
#..  Successful termination
48
1;