Rev 2141 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
# Copyright (C) 1998-2007 ERG Limited, All rights reserved## Module name : Makefile.pl# Module type : Makefile system# Compiler(s) : ANSI C# Environment(s): n/a## Description: makefile.pl template example##.........................................................................#die "Usage: Makefile.pl rootdir Makelib.pl\n"unless( $#ARGV+1 >= 2 );require "$ARGV[1]";# Build platform definitions ..#Platform( 'CSHARP' );############################################################################# Define the source files#Src ( '*', "AssemblyInfo.cs" );Src ( '*', "ReqProMain.cs" );Src ( '*', "Logon.cs" );Src ( '*', "Logon.resx" );Src ( '*', "RQConnection.cs" );Src ( '*', "EA_Utilities.cs" );SharedLib ( '*', "EA_ReqPro", @CSRCS, "-LInterop.EA", "-LInterop.ReqPro40" );#.............................................................................# Packaging definitions#PackageLib ('*', @SHLIBS );#.............................................................................# Finally generate the makefile#MakefileGenerate();#.. Successful termination1;