123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- {$ifndef ALLPACKAGES}
- {$mode objfpc}{$H+}
- program fpmake;
- uses fpmkunit;
- {$endif ALLPACKAGES}
- procedure add_dxegen(const ADirectory: string);
- Var
- P : TPackage;
- T : TTarget;
- begin
- With Installer do
- begin
- P:=AddPackage('dxegen');
- 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:='2.7.1';
- T:=P.Targets.AddProgram('dxegen.pas');
- T.Dependencies.AddUnit('coff');
- P.Targets.AddUnit('coff.pp').install:=false;
- end;
- end;
- {$ifndef ALLPACKAGES}
- begin
- add_dxegen('');
- Installer.Run;
- end.
- {$endif ALLPACKAGES}
|