fpc/packages/libgbafpc/fpmake.pp
Legolas d2dabe9a33 * updated nds/gba linker scripts and reverted some changes for 2.2.4a release
- Removed unused/outdated stuff from libndsfpc
+ Added new examples for libndsfpc
+ Added working (I hope so...) makefile.fpc for all libndsfpc/libgbafpc examples

git-svn-id: trunk@13217 -
2009-05-31 12:15:24 +00:00

30 lines
461 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('libgbafpc');
{$ifdef ALLPACKAGES}
P.Directory:='libgbafpc';
{$endif ALLPACKAGES}
P.Version:='2.2.4a';
P.SourcePath.Add('src');
// P.Dependencies.Add('x11');
// not linux compilable, skip
{$ifndef ALLPACKAGES}
Run;
end;
end.
{$endif ALLPACKAGES}