* Add possibility to specify output filename, and allow not to write package name

This commit is contained in:
Michaël Van Canneyt 2023-07-25 11:57:08 +02:00
parent 08021aa714
commit 1180638f66
3 changed files with 26 additions and 15 deletions

View File

@ -38,7 +38,9 @@ program fpcmake;
ParaMode : TMode; ParaMode : TMode;
ParaVerboseLevel : TVerboseLevel; ParaVerboseLevel : TVerboseLevel;
ParaTargets : string; ParaTargets : string;
ParaOutputFileName : string;
ParaRecursive : boolean; ParaRecursive : boolean;
ParaSkipPackageInfo : Boolean;
{***************************************************************************** {*****************************************************************************
@ -81,7 +83,7 @@ program fpcmake;
Makefile output Makefile output
*****************************************************************************} *****************************************************************************}
procedure ProcessFile_Makefile(const fn:string); procedure ProcessFile_Makefile(const fn:string; const aOutputfile : string);
var var
CurrFPCMake : TFPCMakeConsole; CurrFPCMake : TFPCMakeConsole;
CurrMakefile : TMakefileWriter; CurrMakefile : TMakefileWriter;
@ -129,7 +131,8 @@ program fpcmake;
end; end;
{ Write Makefile } { Write Makefile }
CurrMakefile:=TMakefileWriter.Create(CurrFPCMake,ExtractFilePath(fn)+'Makefile'); CurrMakefile:=TMakefileWriter.Create(CurrFPCMake,ExtractFilePath(fn)+aOutputFile);
CurrMakefile.SkipPackageInfo:=ParaSkipPackageInfo;
CurrMakefile.WriteGenericMakefile; CurrMakefile.WriteGenericMakefile;
CurrMakefile.Free; CurrMakefile.Free;
@ -153,7 +156,7 @@ program fpcmake;
s:=GetToken(subdirs,' '); s:=GetToken(subdirs,' ');
if s='' then if s='' then
break; break;
ProcessFile_Makefile(ExtractFilePath(fn)+s+'/Makefile.fpc'); ProcessFile_Makefile(ExtractFilePath(fn)+s+'/Makefile.fpc',aOutputFile);
until false; until false;
end; end;
@ -163,7 +166,7 @@ program fpcmake;
Package.fpc output Package.fpc output
*****************************************************************************} *****************************************************************************}
procedure ProcessFile_PackageFpc(const fn:string); procedure ProcessFile_PackageFpc(const fn:string; const aOutputFile : string);
var var
CurrFPCMake : TFPCMakeConsole; CurrFPCMake : TFPCMakeConsole;
CurrPackageFpc : TPackageFpcWriter; CurrPackageFpc : TPackageFpcWriter;
@ -181,7 +184,7 @@ program fpcmake;
// CurrFPCMake.Print; // CurrFPCMake.Print;
{ Write Package.fpc } { Write Package.fpc }
CurrPackageFpc:=TPackageFpcWriter.Create(CurrFPCMake,ExtractFilePath(fn)+'Package.fpc'); CurrPackageFpc:=TPackageFpcWriter.Create(CurrFPCMake,ExtractFilePath(fn)+aOutputFile);
CurrPackageFpc.WritePackageFpc; CurrPackageFpc.WritePackageFpc;
CurrPackageFpc.Free; CurrPackageFpc.Free;
@ -197,16 +200,16 @@ program fpcmake;
end; end;
procedure ProcessFile(const fn:string); procedure ProcessFile(const fn:string; const aOutputFile : string);
begin begin
Show(V_Verbose,TitleDate); Show(V_Verbose,TitleDate);
case ParaMode of case ParaMode of
m_None : m_None :
Error('No operation specified, see -h for help'); Error('No operation specified, see -h for help');
m_Makefile : m_Makefile :
ProcessFile_Makefile(fn); ProcessFile_Makefile(fn,aOutputFile);
m_PackageFpc : m_PackageFpc :
ProcessFile_PackageFpc(fn); ProcessFile_PackageFpc(fn,aOutputFile);
end; end;
end; end;
@ -219,7 +222,7 @@ begin
fn:='Makefile.fpc' fn:='Makefile.fpc'
else else
fn:='makefile.fpc'; fn:='makefile.fpc';
ProcessFile(fn); ProcessFile(fn,ParaOutputFilename);
end; end;
@ -228,7 +231,7 @@ var
i : integer; i : integer;
begin begin
for i:=OptInd to ParamCount do for i:=OptInd to ParamCount do
ProcessFile(ParamStr(i)); ProcessFile(ParamStr(i),ParaOutputFilename);
end; end;
@ -248,6 +251,8 @@ begin
writeln(' supported. If omitted only default target is supported'); writeln(' supported. If omitted only default target is supported');
writeln(' -r Recursively process target directories from Makefile.fpc'); writeln(' -r Recursively process target directories from Makefile.fpc');
writeln(' -v Be more verbose'); writeln(' -v Be more verbose');
writeln(' -ooutputfile Use outputfile as filename instead of the default Makefile or Package.fpc');
writeln(' -s Skip writing package name');
writeln(' -q Be quiet'); writeln(' -q Be quiet');
writeln(' -h This help screen'); writeln(' -h This help screen');
Halt(0); Halt(0);
@ -266,11 +271,12 @@ Procedure ProcessOpts;
Process command line opions, and checks if command line options OK. Process command line opions, and checks if command line options OK.
} }
const const
ShortOpts = 'pwqrvh?VT:'; ShortOpts = 'pwqrvh?VsT:o:';
var var
C : char; C : char;
begin begin
{ Reset } { Reset }
ParaSkipPackageInfo:=False;
ParaMode:=m_Makefile; ParaMode:=m_Makefile;
ParaVerboseLevel:=v_default; ParaVerboseLevel:=v_default;
ParaTargets:=LowerCase({$I %FPCTARGETCPU})+'-'+LowerCase({$I %FPCTARGETOS}); ParaTargets:=LowerCase({$I %FPCTARGETCPU})+'-'+LowerCase({$I %FPCTARGETOS});
@ -281,8 +287,10 @@ begin
EndOfOptions : break; EndOfOptions : break;
'p' : ParaMode:=m_PackageFpc; 'p' : ParaMode:=m_PackageFpc;
'w' : ParaMode:=m_Makefile; 'w' : ParaMode:=m_Makefile;
'o' : ParaOutputFileName:=OptArg;
'q' : ParaVerboseLevel:=v_quiet; 'q' : ParaVerboseLevel:=v_quiet;
'r' : ParaRecursive:=true; 'r' : ParaRecursive:=true;
's' : ParaSkipPackageInfo:=True;
'v' : ParaVerboseLevel:=v_verbose; 'v' : ParaVerboseLevel:=v_verbose;
'T' : ParaTargets:=OptArg; 'T' : ParaTargets:=OptArg;
'?' : Usage; '?' : Usage;

View File

@ -101,7 +101,7 @@ implementation
end; end;
{ write to disk } { write to disk }
FInput.Verbose(FPCMakeInfo,'Writing Package.fpc'); FInput.Verbose(FPCMakeInfo,'Writing '+FFileName);
FOutput.SaveToFile(FFileName); FOutput.SaveToFile(FFileName);
end; end;

View File

@ -75,6 +75,7 @@ interface
FOutput : TStringList; FOutput : TStringList;
FPhony : string; FPhony : string;
FHasSection : array[tsections] of boolean; FHasSection : array[tsections] of boolean;
FSkipPackageInfo: Boolean;
procedure LoadFPCMakeIni; procedure LoadFPCMakeIni;
procedure AddIniSection(const s:string); procedure AddIniSection(const s:string);
procedure AddCustomSection(const s:string); procedure AddCustomSection(const s:string);
@ -96,6 +97,7 @@ interface
constructor Create(AFPCMake:TFPCMake;const AFileName:string); constructor Create(AFPCMake:TFPCMake;const AFileName:string);
destructor Destroy;override; destructor Destroy;override;
procedure WriteGenericMakefile; procedure WriteGenericMakefile;
property SkipPackageInfo : Boolean Read FSkipPackageInfo Write FSkipPackageInfo;
end; end;
@ -758,8 +760,9 @@ implementation
AddIniSection('fpcdircheckenv'); AddIniSection('fpcdircheckenv');
AddIniSection('fpcdirdetect'); AddIniSection('fpcdirdetect');
AddIniSection('fpmakefpcdetect'); AddIniSection('fpmakefpcdetect');
{ Package } { Package info }
AddVariable('package_name'); if not SkipPackageInfo then
AddVariable('package_name');
AddVariable('package_version'); AddVariable('package_version');
AddVariable('package_targets'); AddVariable('package_targets');
{ Directory of main package } { Directory of main package }
@ -888,7 +891,7 @@ implementation
AddStrings(TFPCMakeSection(FInput['rules']).List); AddStrings(TFPCMakeSection(FInput['rules']).List);
end; end;
{ write to disk } { write to disk }
FInput.Verbose(FPCMakeInfo,'Writing Makefile'); FInput.Verbose(FPCMakeInfo,'Writing '+FFileName);
Fixtab(FOutput); Fixtab(FOutput);
FOutput.SaveToFile(FFileName); FOutput.SaveToFile(FFileName);
end; end;