fpc/utils/dxegen/fpmake.pp
Michaël Van Canneyt 6bd8388fb4 * Add cthreads
2023-07-16 13:58:48 +02:00

54 lines
971 B
ObjectPascal

{$ifndef ALLPACKAGES}
{$mode objfpc}{$H+}
program fpmake;
uses
{$ifdef unix}
cthreads,
{$endif}
fpmkunit;
{$endif ALLPACKAGES}
procedure add_dxegen(const ADirectory: string);
Var
P : TPackage;
T : TTarget;
begin
With Installer do
begin
P:=AddPackage('utils-dxegen');
P.ShortName:='dxeg';
P.Author := 'Charles Sandmann and others';
P.License := 'LGPL with modification';
P.HomepageURL := 'www.freepascal.org';
P.Email := 'sandmann@clio.rice.edu';
P.Description := 'DXEGEN converts COFF object files to .DXE files that can be loaded and '+
'relocated runtime.';
P.NeedLibC:= false;
P.OSes:=[go32v2];
P.Directory:=ADirectory;
P.Version:='3.3.1';
T:=P.Targets.AddProgram('dxegen.pp');
T.Dependencies.AddUnit('coff');
P.Targets.AddUnit('coff.pp').install:=false;
end;
end;
{$ifndef ALLPACKAGES}
begin
add_dxegen('');
Installer.Run;
end.
{$endif ALLPACKAGES}