summaryrefslogtreecommitdiff
path: root/packages/graph
diff options
context:
space:
mode:
authormarco <marco@3ad0048d-3df7-0310-abae-a5850022a9f2>2008-02-04 20:43:54 +0000
committermarco <marco@3ad0048d-3df7-0310-abae-a5850022a9f2>2008-02-04 20:43:54 +0000
commit27e052d2e5a20fd2c56a07969bc5ce08acc596d2 (patch)
treee94a2b00e32647f02b7af56d10ca52cd64c138fa /packages/graph
parentdc45a93c0324a1dded12e83c4a95d04bc59ba007 (diff)
downloadfpc-27e052d2e5a20fd2c56a07969bc5ce08acc596d2.tar.gz
* first batch
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@10209 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'packages/graph')
-rw-r--r--packages/graph/fpmake.pp68
1 files changed, 68 insertions, 0 deletions
diff --git a/packages/graph/fpmake.pp b/packages/graph/fpmake.pp
new file mode 100644
index 0000000000..95221ba165
--- /dev/null
+++ b/packages/graph/fpmake.pp
@@ -0,0 +1,68 @@
+{$ifndef ALLPACKAGES}
+{$mode objfpc}{$H+}
+program fpmake;
+
+uses fpmkunit;
+
+Var
+ P : TPackage;
+ T : TTarget;
+begin
+ With Installer do
+ begin
+{$endif ALLPACKAGES}
+
+ P:=AddPackage('graph');
+{$ifdef ALLPACKAGES}
+ P.Directory:='graph';
+{$endif ALLPACKAGES}
+ P.Version:='2.0.0';
+ P.SourcePath.Add('src');
+
+ T:=P.Targets.AddUnit('ggigraph.pp');
+ with T.Dependencies do
+ begin
+ AddInclude('graphh.inc');
+ AddInclude('graph.inc');
+ AddInclude('fontdata.inc');
+ AddInclude('clip.inc');
+ AddInclude('palette.inc');
+ AddInclude('modes.inc');
+ AddInclude('fills.inc');
+ AddInclude('gtext.inc');
+ end;
+ T:=P.Targets.AddUnit('graph.pp');
+ with T.Dependencies do
+ begin
+ AddInclude('graphh.inc');
+ AddInclude('graph.inc');
+ AddInclude('fontdata.inc');
+ AddInclude('clip.inc');
+ AddInclude('palette.inc');
+ AddInclude('modes.inc');
+ AddInclude('fills.inc');
+ AddInclude('gtext.inc');
+ AddInclude('graph16.inc');
+ end;
+ T:=P.Targets.AddUnit('sdlgraph.pp');
+ with T.Dependencies do
+ begin
+ AddInclude('graphh.inc');
+ AddInclude('graph.inc');
+ AddInclude('fontdata.inc');
+ AddInclude('clip.inc');
+ AddInclude('palette.inc');
+ AddInclude('modes.inc');
+ AddInclude('fills.inc');
+ AddInclude('gtext.inc');
+ AddUnit('sdl');
+ AddUnit('sdlutils');
+ AddUnit('logger');
+ end;
+
+
+{$ifndef ALLPACKAGES}
+ Run;
+ end;
+end.
+{$endif ALLPACKAGES}