diff options
author | peter <peter@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2008-01-26 19:42:50 +0000 |
---|---|---|
committer | peter <peter@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2008-01-26 19:42:50 +0000 |
commit | e22e97902815b55d31f77002aa3bc0f2a3bd72f5 (patch) | |
tree | 4769a02875ca851f279808d6bbf9f0b5de5cdff3 /packages/fpmake.pp | |
parent | 0b591aa0c53301eb15d1587693da5e04e9dc62f9 (diff) | |
download | fpc-e22e97902815b55d31f77002aa3bc0f2a3bd72f5.tar.gz |
* top level packages building
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@9960 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'packages/fpmake.pp')
-rw-r--r-- | packages/fpmake.pp | 44 |
1 files changed, 37 insertions, 7 deletions
diff --git a/packages/fpmake.pp b/packages/fpmake.pp index 2434b80d5b..59cde07ce8 100644 --- a/packages/fpmake.pp +++ b/packages/fpmake.pp @@ -5,16 +5,46 @@ program fpmake; uses fpmkunit; Var - T : TTarget; - + TBuild,T : TTarget; + P : TPackage; + I : Integer; begin - With Installer do + With Installer do begin - { Base packages } - {$i base/fpmake.inc} - { Extra packages} - {$i extra/fpmake.inc} +{$include dbus/fpmake.pp} +{$include fcl-async/fpmake.pp} +{$include fcl-base/fpmake.pp} +{$include fcl-fpcunit/fpmake.pp} +{$include fcl-image/fpmake.pp} +{$include fcl-json/fpmake.pp} +{$include fcl-net/fpmake.pp} +{$include fcl-passrc/fpmake.pp} +{$include fcl-process/fpmake.pp} +{$include fcl-web/fpmake.pp} +{$include fcl-xml/fpmake.pp} +{$include fpmkunit/fpmake.pp} +{$include gdbint/fpmake.pp} +{$include hash/fpmake.pp} +{$include ibase/fpmake.pp} +{$include imagemagick/fpmake.pp} +{$include libc/fpmake.pp} +{$include libpng/fpmake.pp} +{$include mysql/fpmake.pp} +{$include ncurses/fpmake.pp} +{$include odbc/fpmake.pp} +{$include oracle/fpmake.pp} +{$include pasjpeg/fpmake.pp} +{$include paszlib/fpmake.pp} +{$include postgres/fpmake.pp} +{$include pthreads/fpmake.pp} +{$include regexpr/fpmake.pp} +{$include sqlite/fpmake.pp} +{$include unzip/fpmake.pp} +{$include winunits-base/fpmake.pp} +{$include winunits-jedi/fpmake.pp} +{$include zlib/fpmake.pp} + Run; end; end. |