Subversion Repositories DevTools

Rev

Rev 1119 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1119 Rev 5767
Line -... Line 1...
-
 
1
#===============================================================================
1
# Copyright (C) 1998-2007 ERG Limited, All rights reserved
2
# **** Copyright (c) 2016 VIX TECHNOLOGY (AUST) LTD ****
2
#
3
#
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 the manifest_packager
-
 
9
#
-
 
10
#.........................................................................#
4
#===============================================================================
11
 
5
 
-
 
6
# Build system
12
die "Usage: Makefile.pl rootdir Makelib.pl\n"
7
die "Usage: Makefile.pl rootdir Makelib.pl\n"
13
    unless( $#ARGV+1 >= 2 );
8
    unless( $#ARGV+1 >= 2 );
14
require "$ARGV[1]";
9
require "$ARGV[1]";
15
 
10
 
16
# Build platform definitions ..
-
 
17
#
-
 
18
Platform( '*' );
-
 
19
 
11
 
20
############################################################################
-
 
21
#   Define the source files
-
 
22
#
-
 
23
#.............................................................................
-
 
24
# Packaging definitions
12
# Platform configuration
25
#
-
 
26
PackageFile ( '*'   , '--DirTree=gbe' );
-
 
27
PackageFile ( '*'   , 'descpkg' );
13
Platform            ('*');
28
 
14
 
29
#.............................................................................
-
 
30
# Finally generate the makefile
-
 
31
#
-
 
32
MakefileGenerate();
-
 
33
 
15
 
34
#..  Successful termination
16
# Package the manifest tool perl module.
35
1;
-
 
-
 
17
PackageFile         ('*', '--DirTree=gbe');
36
 
18
 
-
 
19
 
-
 
20
# Generate the makefile and complete
-
 
21
MakefileGenerate    ();
-
 
22
1;