mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-15 17:19:33 +02:00
* missing files added
git-svn-id: trunk@9947 -
This commit is contained in:
parent
818e713317
commit
4fa4c0559b
2
.gitattributes
vendored
2
.gitattributes
vendored
@ -4269,6 +4269,7 @@ packages/oracle/examples/Makefile svneol=native#text/plain
|
||||
packages/oracle/examples/Makefile.fpc svneol=native#text/plain
|
||||
packages/oracle/examples/oraclew.pp svneol=native#text/plain
|
||||
packages/oracle/examples/test01.pp svneol=native#text/plain
|
||||
packages/oracle/fpmake.pp svneol=native#text/plain
|
||||
packages/oracle/src/nzerror.inc svneol=native#text/plain
|
||||
packages/oracle/src/nzt.inc svneol=native#text/plain
|
||||
packages/oracle/src/oci.inc svneol=native#text/plain
|
||||
@ -4430,6 +4431,7 @@ packages/regexpr/Makefile.fpc svneol=native#text/plain
|
||||
packages/regexpr/fpmake.pp svneol=native#text/plain
|
||||
packages/regexpr/src/regexpr.pp svneol=native#text/plain
|
||||
packages/regexpr/tests/testreg1.pp svneol=native#text/plain
|
||||
packages/sqlite/Makefile svneol=native#text/plain
|
||||
packages/sqlite/Makefile.fpc svneol=native#text/plain
|
||||
packages/sqlite/fpmake.pp svneol=native#text/plain
|
||||
packages/sqlite/src/sqlite.pp svneol=native#text/plain
|
||||
|
60
packages/oracle/fpmake.pp
Normal file
60
packages/oracle/fpmake.pp
Normal file
@ -0,0 +1,60 @@
|
||||
{$ifndef ALLPACKAGES}
|
||||
{$mode objfpc}{$H+}
|
||||
program fpmake;
|
||||
|
||||
uses fpmkunit;
|
||||
|
||||
Var
|
||||
P : TPackage;
|
||||
T : TTarget;
|
||||
begin
|
||||
With Installer do
|
||||
begin
|
||||
{$endif ALLPACKAGES}
|
||||
|
||||
P:=AddPackage('oracle');
|
||||
{$ifdef ALLPACKAGES}
|
||||
P.Directory:='oracle';
|
||||
{$endif ALLPACKAGES}
|
||||
P.Version:='2.0.0';
|
||||
P.SourcePath.Add('src');
|
||||
|
||||
T:=P.Targets.AddUnit('ocidyn.pp');
|
||||
with T.Dependencies do
|
||||
begin
|
||||
AddInclude('oci.inc');
|
||||
AddInclude('ocidfn.inc');
|
||||
AddInclude('oci1.inc');
|
||||
AddInclude('oro_interface.inc');
|
||||
AddInclude('orl.inc');
|
||||
AddInclude('ort.inc');
|
||||
AddInclude('ociap.inc');
|
||||
AddInclude('nzt.inc');
|
||||
AddInclude('nzerror.inc');
|
||||
AddInclude('oro_implementation.inc');
|
||||
AddUnit('oratypes');
|
||||
end;
|
||||
T:=P.Targets.AddUnit('oci.pp');
|
||||
with T.Dependencies do
|
||||
begin
|
||||
AddInclude('oci.inc');
|
||||
AddInclude('ocidfn.inc');
|
||||
AddInclude('oci1.inc');
|
||||
AddInclude('oro_interface.inc');
|
||||
AddInclude('orl.inc');
|
||||
AddInclude('ort.inc');
|
||||
AddInclude('ociap.inc');
|
||||
AddInclude('nzt.inc');
|
||||
AddInclude('nzerror.inc');
|
||||
AddInclude('oro_implementation.inc');
|
||||
AddUnit('oratypes');
|
||||
end;
|
||||
T:=P.Targets.AddUnit('oraoci.pp');
|
||||
T:=P.Targets.AddUnit('oratypes.pp');
|
||||
|
||||
|
||||
{$ifndef ALLPACKAGES}
|
||||
Run;
|
||||
end;
|
||||
end.
|
||||
{$endif ALLPACKAGES}
|
2251
packages/sqlite/Makefile
Normal file
2251
packages/sqlite/Makefile
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user