mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-06 06:40:05 +02:00
22 lines
243 B
ObjectPascal
22 lines
243 B
ObjectPascal
{$mode objfpc}
|
|
{$H+}
|
|
{$define FULLSQLDB}
|
|
program fpmake;
|
|
|
|
uses fpmkunit;
|
|
|
|
Var
|
|
T : TTarget;
|
|
|
|
begin
|
|
ChangeDir('../..');
|
|
With Installer do
|
|
begin
|
|
{$i ../../fclmake.inc}
|
|
{$i fpmake.inc}
|
|
EndPackage;
|
|
Run;
|
|
end;
|
|
end.
|
|
|