* Added fpmake.inc driver

git-svn-id: trunk@5237 -
This commit is contained in:
michael 2006-11-05 11:32:25 +00:00
parent 8f8c53f7d8
commit db7a097660
3 changed files with 30 additions and 0 deletions
.gitattributes
packages/extra/libcurl

2
.gitattributes vendored
View File

@ -3182,6 +3182,8 @@ packages/extra/ldap/ldap_schemah.inc svneol=native#text/plain
packages/extra/ldap/ldaph.inc svneol=native#text/plain
packages/extra/libcurl/Makefile svneol=native#text/plain
packages/extra/libcurl/Makefile.fpc svneol=native#text/plain
packages/extra/libcurl/fpmake.inc svneol=native#text/plain
packages/extra/libcurl/fpmake.pp svneol=native#text/plain
packages/extra/libcurl/libcurl.pp svneol=native#text/plain
packages/extra/libcurl/testcurl.pp svneol=native#text/plain
packages/extra/libcurl/teststream.pp svneol=native#text/plain

View File

@ -0,0 +1,11 @@
StartPackage('libcurl');
{$IF defined(ALLPACKAGES)}
Directory:='extra/libcurl';
{$ELSEIF defined(EXTRAPACKAGES)}
Directory:='libcurl';
{$ENDIF}
OS:=[linux,netbsd,freebsd,openbsd,darwin];
T:=Targets.AddUnit('libcurl');
T:=Targets.AddExample('testcurl');
T:=Targets.AddExample('teststream');
EndPackage;

View File

@ -0,0 +1,17 @@
{$mode objfpc}{$H+}
program fpmake;
uses fpmkunit;
Var
T : TTarget;
begin
With Installer do
begin
{ Base packages }
{$i fpmake.inc}
Run;
end;
end.