mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-21 22:23:11 +02:00

- 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 -
30 lines
461 B
ObjectPascal
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}
|