Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2197 brianf 1
# Copyright (C) 1998-2006 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 Release_Manager
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
############################################################################
23
#   Define the source files
24
#
25
 
26
#.............................................................................
27
# Packaging definitions
28
#
29
PackageFile ( '*', '--DirTree=.', '--FilterOut=.jats.packageroot', '--FilterOut=build.pl', '--FilterOut=descpkg', '--FilterOut=Makefile.gbe', '--FilterOut=makefile.pl', '--Prod', '--Prefix=etc' );
30
 
31
#..
32
#
33
Src         ( '*'   , 'descpkg' );
34
PackageFile ( '*'   , 'descpkg' );
35
 
36
#.............................................................................
37
# Finally generate the makefile
38
#
39
MakefileGenerate();
40
 
41
#..  Successful termination
42
1;