1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- {$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 := '[email protected]';
- 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}
|