mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-24 00:27:16 +01:00
* added all missing dependencies to the packages Makefile -> make -j 2 works again under Darwin git-svn-id: trunk@8246 -
84 lines
2.7 KiB
Makefile
84 lines
2.7 KiB
Makefile
#
|
|
# Makefile.fpc for Free Pascal Packages
|
|
#
|
|
|
|
[target]
|
|
dirs=base fpmkunit fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-xml fcl-fpcunit extra
|
|
dirs_freebsd=fcl-web
|
|
dirs_darwin=fcl-web
|
|
dirs_solaris=fcl-web
|
|
dirs_netbsd=fcl-web
|
|
dirs_openbsd=fcl-web
|
|
dirs_linux=fcl-web
|
|
dirs_win32=fcl-web
|
|
dirs_win64=fcl-web
|
|
dirs_wince=fcl-web
|
|
|
|
[install]
|
|
fpcpackage=y
|
|
fpcsubdir=packages
|
|
|
|
[default]
|
|
fpcdir=..
|
|
|
|
[rules]
|
|
extra_all: base_all fcl-xml_all
|
|
extra_debug: base_debug fcl-xml_debug
|
|
extra_smart: base_smart fcl-xml_smart
|
|
extra_release: base_release fcl-xml_release
|
|
extra_shared: base_shared fcl-xml_shared
|
|
|
|
fcl-base_all: base_all
|
|
fcl-base_debug: base_debug
|
|
fcl-base_smart: base_smart
|
|
fcl-base_release: base_release
|
|
fcl-base_shared: base_shared
|
|
|
|
fcl-xml_all: fcl-base_all
|
|
fcl-xml_debug: fcl-base_debug
|
|
fcl-xml_smart: fcl-base_smart
|
|
fcl-xml_release: fcl-base_release
|
|
fcl-xml_shared: fcl-base_shared
|
|
|
|
fcl-image_all: fcl-base_all
|
|
fcl-image_debug: fcl-base_debug
|
|
fcl-image_smart: fcl-base_smart
|
|
fcl-image_release: fcl-base_release
|
|
fcl-image_shared: fcl-base_shared
|
|
|
|
fcl-fpcunit_all: fcl-xml_all
|
|
fcl-fpcunit_debug: fcl-xml_debug
|
|
fcl-fpcunit_smart: fcl-xml_smart
|
|
fcl-fpcunit_release: fcl-xml_release
|
|
fcl-fpcunit_shared: fcl-xml_shared
|
|
|
|
fcl-registry_all: fcl-xml_all
|
|
fcl-registry_debug: fcl-xml_debug
|
|
fcl-registry_smart: fcl-xml_smart
|
|
fcl-registry_release: fcl-xml_release
|
|
fcl-registry_shared: fcl-xml_shared
|
|
|
|
fcl-net_all: fcl-passrc_all fcl-xml_all
|
|
fcl-net_debug: fcl-passrc_debug fcl-xml_debug
|
|
fcl-net_smart: fcl-passrc_smart fcl-xml_smart
|
|
fcl-net_release: fcl-passrc_release fcl-xml_release
|
|
fcl-net_shared: fcl-passrc_shared fcl-xml_shared
|
|
|
|
fcl-web_all: fcl-db_all fcl-xml_all
|
|
fcl-web_debug: fcl-db_debug fcl-xml_debug
|
|
fcl-web_smart: fcl-db_smart fcl-xml_smart
|
|
fcl-web_release: fcl-db_release fcl-xml_release
|
|
fcl-web_shared: fcl-db_shared fcl-xml_shared
|
|
|
|
fcl-db_all: fcl-base_all
|
|
fcl-db_debug: fcl-base_debug
|
|
fcl-db_smart: fcl-base_smart
|
|
fcl-db_release: fcl-base_release
|
|
fcl-db_shared: fcl-base_shared
|
|
|
|
fcl_all: fcl-base_all fcl-xml_all fcl-fpcunit_all fcl-db_all fcl-web_all fcl-registry_all fcl-passrc_all fcl-image_all fcl-net_all
|
|
fcl_debug: fcl-base_debug fcl-xml_debug fcl-fpcunit_debug fcl-db_debug fcl-web_debug fcl-registry_debug fcl-passrc_debug fcl-image_debug fcl-net_debug
|
|
fcl_smart: fcl-base_smart fcl-xml_smart fcl-fpcunit_smart fcl-db_smart fcl-web_smart fcl-registry_smart fcl-passrc_smart fcl-image_smart fcl-net_smart
|
|
fcl_release: fcl-base_release fcl-xml_release fcl-fpcunit_release fcl-db_release fcl-web_release fcl-registry_release fcl-passrc_release fcl-image_release fcl-net_release
|
|
fcl_shared: fcl-base_shared fcl-xml_shared fcl-fpcunit_shared fcl-db_shared fcl-web_shared fcl-registry_shared fcl-passrc_shared fcl-image_shared fcl-net_shared
|