Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
2139 ghuddy 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 template example
9
#
10
#.........................................................................#
11
 
12
die "Usage: Makefile.pl rootdir Makelib.pl\n"
13
    unless( $#ARGV+1 >= 2 );
14
require "$ARGV[1]";
15
 
16
# Build platform definitions ..
17
#
18
Platform( 'CSHARP' );
19
 
20
############################################################################
21
#   Define the source files
22
#
23
Src        ( '*', "AssemblyInfo.cs" );
2141 ghuddy 24
Src        ( '*', "CopyReqProDatabase.cs");
25
Src        ( '*', "CopyReqProDatabaseToMemory.cs");
26
Src        ( '*', "EA_ElementSorter.cs" );
27
Src        ( '*', "EA_Utilities.cs" );
28
Src        ( '*', "ExportToReqProCSVForm.cs");
29
Src        ( '*', "ExportToReqProCSVForm.resx");
30
Src        ( '*', "ImportReqProDatabase.cs");
2139 ghuddy 31
Src        ( '*', "Logon.cs" );
32
Src        ( '*', "Logon.resx" );
2141 ghuddy 33
Src        ( '*', "ReqPro_object.cs");
34
Src        ( '*', "ReqPro_ReqStatus.cs");
35
Src        ( '*', "ReqPro_ReqType.cs");
36
Src        ( '*', "ReqProDB_Artifact.cs");
37
Src        ( '*', "ReqProFilterForm.cs");
38
Src        ( '*', "ReqProFilterForm.resx");
39
Src        ( '*', "ReqProMain.cs" );
40
Src        ( '*', "ReqProParser.cs");
2139 ghuddy 41
 
42
SharedLib  ( '*', "EA_ReqPro", @CSRCS, "-LInterop.EA", "-LInterop.ReqPro40" );
43
 
44
#.............................................................................
45
# Packaging definitions
46
#
47
PackageLib ('*', @SHLIBS );
48
 
49
 
50
#.............................................................................
51
# Finally generate the makefile
52
#
53
MakefileGenerate();
54
 
55
#..  Successful termination
56
1;
57