* Makefiles added

git-svn-id: trunk@10079 -
This commit is contained in:
peter 2008-01-28 08:08:35 +00:00
parent 886c74ac75
commit 9288ead792
5 changed files with 2306 additions and 5 deletions

2
.gitattributes vendored
View File

@ -873,6 +873,8 @@ packages/bfd/Makefile.fpc svneol=native#text/plain
packages/bfd/fpmake.pp svneol=native#text/plain
packages/bfd/src/bfd.pas svneol=native#text/plain
packages/bzip2/LICENSE svneol=native#text/plain
packages/bzip2/Makefile svneol=native#text/plain
packages/bzip2/Makefile.fpc svneol=native#text/plain
packages/bzip2/examples/pasbzip.pas svneol=native#text/plain
packages/bzip2/fpmake.pp svneol=native#text/plain
packages/bzip2/src/bzip2.pas svneol=native#text/plain

2251
packages/bzip2/Makefile Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,30 @@
#
# Makefile.fpc for BZip2 library
#
[package]
name=bzip2
version=2.0.0
[target]
units=bzip2
[require]
package=rtl
[install]
fpcpackage=y
[default]
fpcdir=../..
[compiler]
includedir=src
sourcedir=src tests
[shared]
build=n
[rules]
.NOTPARALLEL:

View File

@ -1,17 +1,33 @@
{$ifndef ALLPACKAGES}
{$mode objfpc}{$H+}
program fpmake;
uses fpmkunit;
Var
P : TPackage;
T : TTarget;
begin
With Installer do
With Installer do
begin
{ Base packages }
{$i fpmake.inc}
{$endif ALLPACKAGES}
P:=AddPackage('bzip2');
{$ifdef ALLPACKAGES}
P.Directory:='bzip2';
{$endif ALLPACKAGES}
P.Version:='2.0.0';
P.SourcePath.Add('src');
P.IncludePath.Add('src');
T:=P.Targets.AddUnit('bzip2.pas');
with T.Dependencies do
begin
AddInclude('bzip2i386.inc',[i386],AllOSes);
end;
{$ifndef ALLPACKAGES}
Run;
end;
end.
{$endif ALLPACKAGES}

View File

@ -24,6 +24,8 @@ Please do not contact Julian about this Pascal library, he didn't wrote it.
****************************************************************************}
interface
{$goto on}
uses objects;
const max_groups=6;