Subversion Repositories DevTools

Rev

Rev 2151 | Rev 2169 | 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" );
2155 ghuddy 24
Src        ( '*', "Constants.cs");
2141 ghuddy 25
Src        ( '*', "CopyReqProDatabase.cs");
26
Src        ( '*', "CopyReqProDatabaseToMemory.cs");
27
Src        ( '*', "EA_ElementSorter.cs" );
2155 ghuddy 28
Src        ( '*', "EA_TaggedValues.cs" );
2141 ghuddy 29
Src        ( '*', "EA_Utilities.cs" );
2155 ghuddy 30
Src        ( '*', "ExportForm.cs");
31
Src        ( '*', "ExportForm.resx");
2141 ghuddy 32
Src        ( '*', "ExportToReqProCSVForm.cs");
33
Src        ( '*', "ExportToReqProCSVForm.resx");
2155 ghuddy 34
Src        ( '*', "ExportToReqProDatabase.cs");
2141 ghuddy 35
Src        ( '*', "ImportReqProDatabase.cs");
2139 ghuddy 36
Src        ( '*', "Logon.cs" );
37
Src        ( '*', "Logon.resx" );
2151 ghuddy 38
Src        ( '*', "MessageBoxEx.cs" );
2155 ghuddy 39
Src        ( '*', "QueryForm.cs" );
40
Src        ( '*', "QueryForm.resx" );
41
Src        ( '*', "ReqProDatabase.cs");
2141 ghuddy 42
Src        ( '*', "ReqPro_object.cs");
43
Src        ( '*', "ReqPro_ReqStatus.cs");
44
Src        ( '*', "ReqPro_ReqType.cs");
45
Src        ( '*', "ReqProDB_Artifact.cs");
46
Src        ( '*', "ReqProFilterForm.cs");
47
Src        ( '*', "ReqProFilterForm.resx");
48
Src        ( '*', "ReqProMain.cs" );
49
Src        ( '*', "ReqProParser.cs");
2139 ghuddy 50
 
51
SharedLib  ( '*', "EA_ReqPro", @CSRCS, "-LInterop.EA", "-LInterop.ReqPro40" );
52
 
53
#.............................................................................
54
# Packaging definitions
55
#
56
PackageLib ('*', @SHLIBS );
57
 
58
 
59
#.............................................................................
60
# Finally generate the makefile
61
#
62
MakefileGenerate();
63
 
64
#..  Successful termination
65
1;
66