fpc/packages/unixutil/fpmake.pp
joost 7fea1915e4 * fpmake.pp updates
git-svn-id: trunk@15268 -
2010-05-13 18:15:31 +00:00

34 lines
573 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.2.2-0';
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}