mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 13:38:31 +02:00
53 lines
1.2 KiB
ObjectPascal
53 lines
1.2 KiB
ObjectPascal
{$ifndef ALLPACKAGES}
|
|
{$mode objfpc}{$H+}
|
|
program fpmake;
|
|
|
|
uses {$ifdef unix}cthreads,{$endif} fpmkunit;
|
|
|
|
Var
|
|
P : TPackage;
|
|
T : TTarget;
|
|
begin
|
|
With Installer do
|
|
begin
|
|
{$endif ALLPACKAGES}
|
|
|
|
P:=AddPackage('ami-extra');
|
|
P.ShortName := 'ami';
|
|
P.Author := 'FPC core team';
|
|
P.License := 'LGPL with modification';
|
|
P.HomepageURL := 'www.freepascal.org';
|
|
P.Description := 'ami-extra, additional units for Amiga-like systems';
|
|
|
|
P.Dependencies.Add('morphunits',[morphos]);
|
|
P.Dependencies.Add('arosunits',[aros]);
|
|
if Defaults.CPU=m68k then
|
|
P.Dependencies.Add('amunits',[amiga]);
|
|
if Defaults.CPU=powerpc then
|
|
P.Dependencies.Add('os4units',[amiga]);
|
|
|
|
{$ifdef ALLPACKAGES}
|
|
P.Directory:=ADirectory;
|
|
{$endif ALLPACKAGES}
|
|
P.Version:='3.3.1';
|
|
P.SourcePath.Add('src');
|
|
|
|
P.OSes:=AllAmigaLikeOSes;
|
|
|
|
T:=P.Targets.AddUnit('amsgbox.pas');
|
|
T:=P.Targets.AddUnit('cliputils.pas');
|
|
T:=P.Targets.AddUnit('pcq.pas');
|
|
T:=P.Targets.AddUnit('muihelper.pas');
|
|
|
|
P.ExamplePath.Add('examples');
|
|
T:=P.Targets.AddExampleProgram('muihelloworld.pas');
|
|
|
|
|
|
P.NamespaceMap:='namespaces.lst';
|
|
|
|
{$ifndef ALLPACKAGES}
|
|
Run;
|
|
end;
|
|
end.
|
|
{$endif ALLPACKAGES}
|