{$ifndef ALLPACKAGES} {$mode objfpc}{$H+} program fpmake; uses fpmkunit; Var P : TPackage; T : TTarget; begin With Installer do begin {$endif ALLPACKAGES} P:=AddPackage('tosunits'); P.Author := 'FPC core team'; P.License := 'LGPL with modification'; P.HomepageURL := 'www.freepascal.org'; P.Description := 'tosunits, OS interface units for Atari TOS/GEM'; {$ifdef ALLPACKAGES} P.Directory:=ADirectory; {$endif ALLPACKAGES} P.Version:='3.2.0-beta'; P.SourcePath.Add('src'); P.OSes:=[atari]; T:=P.Targets.AddUnit('gemdos.pas'); T:=P.Targets.AddUnit('xbios.pas'); T:=P.Targets.AddUnit('vdi.pas'); T:=P.Targets.AddUnit('aes.pas'); P.ExamplePath.Add('examples'); T:=P.Targets.AddExampleProgram('higem.pas'); T:=P.Targets.AddExampleProgram('gemwin.pas'); T:=P.Targets.AddExampleProgram('gemcube.pas'); {$ifndef ALLPACKAGES} Run; end; end. {$endif ALLPACKAGES}