Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
2088 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        ( '*', "About.cs" );
24
Src        ( '*', "About.resx" );
2094 ghuddy 25
Src        ( '*', "AssemblyInfo.cs" );
2088 ghuddy 26
Src        ( '*', "createWordDoc.cs" );
27
Src        ( '*', "createWordDoc.resx" );
2094 ghuddy 28
Src        ( '*', "DocReferenceForm.cs" );
29
Src        ( '*', "DocReferenceForm.resx" );
2104 ghuddy 30
Src        ( '*', "DocSectionTracking.cs" );
2094 ghuddy 31
Src        ( '*', "EA_Constants.cs" );
32
Src        ( '*', "EA_DocGenOptions.cs" );
33
Src        ( '*', "EA_DocGenOptionsForm.cs" );
34
Src        ( '*', "EA_DocGenOptionsForm.resx" );
2104 ghuddy 35
Src        ( '*', "EA_ElementAccumulator.cs" );
2094 ghuddy 36
Src        ( '*', "EA_ElementSorter.cs" );
37
Src        ( '*', "EA_Finders.cs" );
2088 ghuddy 38
Src        ( '*', "EA_RelationshipMatrix.cs" );
2104 ghuddy 39
Src        ( '*', "RelationshipMatrixType.cs" );
40
Src        ( '*', "RelationshipMatrixType.resx" );
2094 ghuddy 41
Src        ( '*', "EA_Utilities.cs" );
2088 ghuddy 42
Src        ( '*', "GUID_Clipboard.cs" );
2094 ghuddy 43
Src        ( '*', "Main.cs" );
2104 ghuddy 44
Src        ( '*', "Sorters.cs" );
2094 ghuddy 45
Src        ( '*', "StyleContent.cs" );
46
Src        ( '*', "TabularContent.cs" );
47
Src        ( '*', "TerminologyForm.cs" );
48
Src        ( '*', "TerminologyForm.resx" );
49
Src        ( '*', "TextualContent.cs" );
2088 ghuddy 50
 
2092 ghuddy 51
SharedLib  ( '*', "EA_DocGen", @CSRCS, "-LInterop.EA", "-LInterop.Word", "-LOffice" );
2088 ghuddy 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