mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-06 00:58:28 +02:00
34 lines
571 B
ObjectPascal
34 lines
571 B
ObjectPascal
{$ifndef ALLPACKAGES}
|
|
{$mode objfpc}{$H+}
|
|
program fpmake;
|
|
|
|
uses fpmkunit;
|
|
|
|
Var
|
|
P : TPackage;
|
|
T : TTarget;
|
|
begin
|
|
With Installer do
|
|
begin
|
|
{$endif ALLPACKAGES}
|
|
|
|
P:=AddPackage('unixutil');
|
|
{$ifdef ALLPACKAGES}
|
|
P.Directory:='unixutil';
|
|
{$endif ALLPACKAGES}
|
|
P.Version:='2.7.1';
|
|
P.OSes:=[Linux];
|
|
P.CPUs:=[i386];
|
|
P.SourcePath.Add('src');
|
|
T:=P.Targets.AddUnit('unixutils.pp',[i386],[linux]);
|
|
with T.Dependencies do
|
|
begin
|
|
AddUnit('libc');
|
|
end;
|
|
|
|
{$ifndef ALLPACKAGES}
|
|
Run;
|
|
end;
|
|
end.
|
|
{$endif ALLPACKAGES}
|