mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-03 07:09:49 +01:00
17 lines
171 B
ObjectPascal
17 lines
171 B
ObjectPascal
{$mode objfpc}{$H+}
|
|
program fpmake;
|
|
|
|
uses fpmkunit;
|
|
|
|
var
|
|
T : TTarget;
|
|
S : TSource;
|
|
begin
|
|
with Installer do
|
|
begin
|
|
{$i fpmake.inc}
|
|
Run;
|
|
end;
|
|
end.
|
|
|