mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 14:08:09 +02:00
* Makefiles added
git-svn-id: trunk@10079 -
This commit is contained in:
parent
886c74ac75
commit
9288ead792
2
.gitattributes
vendored
2
.gitattributes
vendored
@ -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
2251
packages/bzip2/Makefile
Normal file
File diff suppressed because it is too large
Load Diff
30
packages/bzip2/Makefile.fpc
Normal file
30
packages/bzip2/Makefile.fpc
Normal 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:
|
@ -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}
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user