123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302 |
- {
- Copyright (c) 2001 by Peter Vreman
- Convert Makefile.fpc to Makefile
- See the file COPYING.FPC, included in this distribution,
- for details about the copyright.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- **********************************************************************}
- {$ifdef fpc}{$mode objfpc}{$endif}
- {$H+}
- program fpcmake;
- { Define to not catch exceptions and output backtraces }
- { define NOEXCEPT}
- uses
- getopts,
- sysutils,
- fpcmmain,fpcmwr,fpcmpkg;
- type
- { Verbosity Level }
- TVerboseLevel = (v_Quiet,v_Default,v_Verbose);
- { Operation mode }
- TMode = (m_None,m_PackageFpc,m_Makefile);
- TFPCMakeConsole=class(TFPCMake)
- procedure Verbose(lvl:TFPCMakeVerbose;const s:string);override;
- end;
- var
- ParaMode : TMode;
- ParaVerboseLevel : TVerboseLevel;
- ParaTargets : string;
- ParaRecursive : boolean;
- {*****************************************************************************
- Helpers
- *****************************************************************************}
- procedure Show(lvl:TVerboseLevel;const s:string);
- begin
- if ParaVerboseLevel>=lvl then
- Writeln(s);
- end;
- procedure Error(const s:string);
- begin
- Writeln('Error: ',s);
- Halt(1);
- end;
- {*****************************************************************************
- TFPCMakeConsole
- *****************************************************************************}
- procedure TFPCMakeConsole.Verbose(lvl:TFPCMakeVerbose;const s:string);
- begin
- case lvl of
- FPCMakeInfo :
- Show(V_Default,' '+VerboseIdent+s);
- FPCMakeDebug :
- Show(V_Verbose,' '+VerboseIdent+s);
- FPCMakeError :
- Error(s);
- end;
- end;
- {*****************************************************************************
- Makefile output
- *****************************************************************************}
- procedure ProcessFile_Makefile(const fn:string);
- var
- CurrFPCMake : TFPCMakeConsole;
- CurrMakefile : TMakefileWriter;
- s,s2,Subdirs : string;
- c : tcpu;
- t : tos;
- begin
- Show(V_Default,'Processing '+fn);
- CurrFPCMake:=nil;
- {$ifndef NOEXCEPT}
- try
- {$endif NOEXCEPT}
- { Load Makefile.fpc }
- CurrFPCMake:=TFPCMakeConsole.Create(fn);
- if ParaTargets<>'' then
- CurrFPCMake.SetTargets(ParaTargets);
- CurrFPCMake.LoadMakefileFPC;
- // CurrFPCMake.Print;
- { Add the subdirs }
- subdirs:='';
- for c:=low(tcpu) to high(tcpu) do
- for t:=low(tos) to high(tos) do
- if CurrFPCMake.IncludeTargets[c,t] then
- begin
- s2:=CurrFPCMake.GetTargetVariable(c,t,'target_dirs',true);
- repeat
- s:=GetToken(s2,' ');
- if s='' then
- break;
- AddTokenNoDup(subdirs,s,' ');
- until false;
- end;
- for c:=low(tcpu) to high(tcpu) do
- for t:=low(tos) to high(tos) do
- if CurrFPCMake.IncludeTargets[c,t] then
- begin
- s2:=CurrFPCMake.GetTargetVariable(c,t,'target_exampledirs',true);
- repeat
- s:=GetToken(s2,' ');
- if s='' then
- break;
- AddTokenNoDup(subdirs,s,' ');
- until false;
- end;
- { Write Makefile }
- CurrMakefile:=TMakefileWriter.Create(CurrFPCMake,ExtractFilePath(fn)+'Makefile');
- CurrMakefile.WriteGenericMakefile;
- CurrMakefile.Free;
- {$ifndef NOEXCEPT}
- except
- on e : exception do
- begin
- Error(e.message);
- Subdirs:='';
- end;
- end;
- {$endif NOEXCEPT}
- CurrFPCMake.Free;
- { Process subdirs }
- if (Subdirs<>'') and
- ParaRecursive then
- begin
- Show(v_Verbose,'Subdirs found: '+subdirs);
- repeat
- s:=GetToken(subdirs,' ');
- if s='' then
- break;
- ProcessFile_Makefile(ExtractFilePath(fn)+s+'/Makefile.fpc');
- until false;
- end;
- end;
- {*****************************************************************************
- Package.fpc output
- *****************************************************************************}
- procedure ProcessFile_PackageFpc(const fn:string);
- var
- CurrFPCMake : TFPCMakeConsole;
- CurrPackageFpc : TPackageFpcWriter;
- begin
- Show(V_Default,'Processing '+fn);
- CurrFPCMake:=nil;
- {$ifndef NOEXCEPT}
- try
- {$endif NOEXCEPT}
- { Load Makefile.fpc }
- CurrFPCMake:=TFPCMakeConsole.Create(fn);
- if ParaTargets<>'' then
- CurrFPCMake.SetTargets(ParaTargets);
- CurrFPCMake.LoadMakefileFPC;
- // CurrFPCMake.Print;
- { Write Package.fpc }
- CurrPackageFpc:=TPackageFpcWriter.Create(CurrFPCMake,ExtractFilePath(fn)+'Package.fpc');
- CurrPackageFpc.WritePackageFpc;
- CurrPackageFpc.Free;
- {$ifndef NOEXCEPT}
- except
- on e : exception do
- begin
- Error(e.message);
- end;
- end;
- {$endif NOEXCEPT}
- CurrFPCMake.Free;
- end;
- procedure ProcessFile(const fn:string);
- begin
- Show(V_Verbose,TitleDate);
- case ParaMode of
- m_None :
- Error('No operation specified, see -h for help');
- m_Makefile :
- ProcessFile_Makefile(fn);
- m_PackageFpc :
- ProcessFile_PackageFpc(fn);
- end;
- end;
- procedure UseMakefilefpc;
- var
- fn : string;
- begin
- if FileExists('Makefile.fpc') then
- fn:='Makefile.fpc'
- else
- fn:='makefile.fpc';
- ProcessFile(fn);
- end;
- procedure UseParameters;
- var
- i : integer;
- begin
- for i:=OptInd to ParamCount do
- ProcessFile(ParamStr(i));
- end;
- Procedure Usage;
- {
- Print usage and exit.
- }
- begin
- writeln(paramstr(0),': <-pw> [-vqh] [file] [file ...]');
- writeln('Operations:');
- writeln(' -p Generate Package.fpc');
- writeln(' -w Write Makefile');
- writeln(' -V Print fpcmake version and exit');
- writeln('');
- writeln('Options:');
- writeln(' -T<target>[,target] Support only specified targets. If "-Tall", all targets are');
- writeln(' supported. If omitted only default target is supported');
- writeln(' -r Recursively process target directories from Makefile.fpc');
- writeln(' -v Be more verbose');
- writeln(' -q Be quiet');
- writeln(' -h This help screen');
- Halt(0);
- end;
- procedure printVersion;
- begin
- writeln (TitleDate);
- halt(0);
- end;
- Procedure ProcessOpts;
- {
- Process command line opions, and checks if command line options OK.
- }
- const
- ShortOpts = 'pwqrvh?VT:';
- var
- C : char;
- begin
- { Reset }
- ParaMode:=m_Makefile;
- ParaVerboseLevel:=v_default;
- ParaTargets:=LowerCase({$I %FPCTARGETCPU})+'-'+LowerCase({$I %FPCTARGETOS});
- { Parse options }
- repeat
- c:=Getopt (ShortOpts);
- Case C of
- EndOfOptions : break;
- 'p' : ParaMode:=m_PackageFpc;
- 'w' : ParaMode:=m_Makefile;
- 'q' : ParaVerboseLevel:=v_quiet;
- 'r' : ParaRecursive:=true;
- 'v' : ParaVerboseLevel:=v_verbose;
- 'T' : ParaTargets:=OptArg;
- '?' : Usage;
- 'h' : Usage;
- 'V' : printVersion;
- end;
- until false;
- end;
- begin
- ProcessOpts;
- if (OptInd>Paramcount) then
- UseMakefilefpc
- else
- UseParameters;
- end.
|