Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
2263 kivins 1
# Copyright (C) 1998-2008 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
#.........................................................................#
9
 
10
die "Usage: Makefile.pl rootdir Makelib.pl\n"
11
    unless( $#ARGV+1 >= 2 );
12
require "$ARGV[1]";
13
 
14
#SubDir ('../etc');
15
 
16
# Build platform definitions ..
17
#
18
Platform( '*' );
19
 
20
############################################################################
21
#   Define the source files
22
#
23
 
24
 
25
MakeProject ('*'  , 'ttm/TxnTestManager.bpr'
26
                  , '--CleanDir=../../build'
27
                  , '--PackageProg=../../output/TxnTestManager.exe'
28
            );
29
 
30
#.............................................................................
31
# Packaging definitions
32
# The MakeProjects will package artifacts directly
33
 
34
PackageFile ('*', 'descpkg');
35
 
36
#.............................................................................
37
# Finally generate the makefile
38
#
39
MakefileGenerate();
40
 
41
#..  Successful termination
42
1;
43