Makefile 123 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621
  1. #
  2. # Don't edit, this file is generated by FPCMake Version 2.0.0 [2016-04-05 rev 33425]
  3. #
  4. default: all
  5. MAKEFILETARGETS=i386-linux i386-go32v2 i386-win32 i386-os2 i386-freebsd i386-beos i386-haiku i386-netbsd i386-solaris i386-qnx i386-netware i386-openbsd i386-wdosx i386-darwin i386-emx i386-watcom i386-netwlibc i386-wince i386-embedded i386-symbian i386-nativent i386-iphonesim i386-android i386-aros m68k-linux m68k-freebsd m68k-netbsd m68k-amiga m68k-atari m68k-openbsd m68k-palmos m68k-embedded powerpc-linux powerpc-netbsd powerpc-amiga powerpc-macos powerpc-darwin powerpc-morphos powerpc-embedded powerpc-wii powerpc-aix sparc-linux sparc-netbsd sparc-solaris sparc-embedded x86_64-linux x86_64-freebsd x86_64-netbsd x86_64-solaris x86_64-openbsd x86_64-darwin x86_64-win64 x86_64-embedded x86_64-dragonfly arm-linux arm-palmos arm-darwin arm-wince arm-gba arm-nds arm-embedded arm-symbian arm-android powerpc64-linux powerpc64-darwin powerpc64-embedded powerpc64-aix avr-embedded armeb-linux armeb-embedded mips-linux mipsel-linux mipsel-embedded mipsel-android jvm-java jvm-android i8086-msdos
  6. BSDs = freebsd netbsd openbsd darwin dragonfly
  7. UNIXs = linux $(BSDs) solaris qnx haiku aix
  8. LIMIT83fs = go32v2 os2 emx watcom msdos
  9. OSNeedsComspecToRunBatch = go32v2 watcom
  10. FORCE:
  11. .PHONY: FORCE
  12. override PATH:=$(patsubst %/,%,$(subst \,/,$(PATH)))
  13. ifneq ($(findstring darwin,$(OSTYPE)),)
  14. inUnix=1 #darwin
  15. SEARCHPATH:=$(filter-out .,$(subst :, ,$(PATH)))
  16. else
  17. ifeq ($(findstring ;,$(PATH)),)
  18. inUnix=1
  19. SEARCHPATH:=$(filter-out .,$(subst :, ,$(PATH)))
  20. else
  21. SEARCHPATH:=$(subst ;, ,$(PATH))
  22. endif
  23. endif
  24. SEARCHPATH+=$(patsubst %/,%,$(subst \,/,$(dir $(MAKE))))
  25. PWD:=$(strip $(wildcard $(addsuffix /pwd.exe,$(SEARCHPATH))))
  26. ifeq ($(PWD),)
  27. PWD:=$(strip $(wildcard $(addsuffix /pwd,$(SEARCHPATH))))
  28. ifeq ($(PWD),)
  29. $(error You need the GNU utils package to use this Makefile)
  30. else
  31. PWD:=$(firstword $(PWD))
  32. SRCEXEEXT=
  33. endif
  34. else
  35. PWD:=$(firstword $(PWD))
  36. SRCEXEEXT=.exe
  37. endif
  38. ifndef inUnix
  39. ifeq ($(OS),Windows_NT)
  40. inWinNT=1
  41. else
  42. ifdef OS2_SHELL
  43. inOS2=1
  44. endif
  45. endif
  46. else
  47. ifneq ($(findstring cygdrive,$(PATH)),)
  48. inCygWin=1
  49. endif
  50. endif
  51. ifdef inUnix
  52. SRCBATCHEXT=.sh
  53. else
  54. ifdef inOS2
  55. SRCBATCHEXT=.cmd
  56. else
  57. SRCBATCHEXT=.bat
  58. endif
  59. endif
  60. ifdef COMSPEC
  61. ifneq ($(findstring $(OS_SOURCE),$(OSNeedsComspecToRunBatch)),)
  62. ifndef RUNBATCH
  63. RUNBATCH=$(COMSPEC) /C
  64. endif
  65. endif
  66. endif
  67. ifdef inUnix
  68. PATHSEP=/
  69. else
  70. PATHSEP:=$(subst /,\,/)
  71. ifdef inCygWin
  72. PATHSEP=/
  73. endif
  74. endif
  75. ifdef PWD
  76. BASEDIR:=$(subst \,/,$(shell $(PWD)))
  77. ifdef inCygWin
  78. ifneq ($(findstring /cygdrive/,$(BASEDIR)),)
  79. BASENODIR:=$(patsubst /cygdrive%,%,$(BASEDIR))
  80. BASEDRIVE:=$(firstword $(subst /, ,$(BASENODIR)))
  81. BASEDIR:=$(subst /cygdrive/$(BASEDRIVE)/,$(BASEDRIVE):/,$(BASEDIR))
  82. endif
  83. endif
  84. else
  85. BASEDIR=.
  86. endif
  87. ifdef inOS2
  88. ifndef ECHO
  89. ECHO:=$(strip $(wildcard $(addsuffix /gecho$(SRCEXEEXT),$(SEARCHPATH))))
  90. ifeq ($(ECHO),)
  91. ECHO:=$(strip $(wildcard $(addsuffix /echo$(SRCEXEEXT),$(SEARCHPATH))))
  92. ifeq ($(ECHO),)
  93. ECHO=echo
  94. else
  95. ECHO:=$(firstword $(ECHO))
  96. endif
  97. else
  98. ECHO:=$(firstword $(ECHO))
  99. endif
  100. endif
  101. export ECHO
  102. endif
  103. override DEFAULT_FPCDIR=../../..
  104. ifndef FPC
  105. ifdef PP
  106. FPC=$(PP)
  107. endif
  108. endif
  109. ifndef FPC
  110. FPCPROG:=$(strip $(wildcard $(addsuffix /fpc$(SRCEXEEXT),$(SEARCHPATH))))
  111. ifneq ($(FPCPROG),)
  112. FPCPROG:=$(firstword $(FPCPROG))
  113. ifneq ($(CPU_TARGET),)
  114. FPC:=$(shell $(FPCPROG) -P$(CPU_TARGET) -PB)
  115. else
  116. FPC:=$(shell $(FPCPROG) -PB)
  117. endif
  118. ifneq ($(findstring Error,$(FPC)),)
  119. override FPC=$(firstword $(strip $(wildcard $(addsuffix /ppc386$(SRCEXEEXT),$(SEARCHPATH)))))
  120. else
  121. ifeq ($(strip $(wildcard $(FPC))),)
  122. FPC:=$(firstword $(FPCPROG))
  123. endif
  124. endif
  125. else
  126. override FPC=$(firstword $(strip $(wildcard $(addsuffix /ppc386$(SRCEXEEXT),$(SEARCHPATH)))))
  127. endif
  128. endif
  129. override FPC:=$(subst $(SRCEXEEXT),,$(FPC))
  130. override FPC:=$(subst \,/,$(FPC))$(SRCEXEEXT)
  131. FOUNDFPC:=$(strip $(wildcard $(FPC)))
  132. ifeq ($(FOUNDFPC),)
  133. FOUNDFPC=$(strip $(wildcard $(addsuffix /$(FPC),$(SEARCHPATH))))
  134. ifeq ($(FOUNDFPC),)
  135. $(error Compiler $(FPC) not found)
  136. endif
  137. endif
  138. ifndef FPC_COMPILERINFO
  139. FPC_COMPILERINFO:=$(shell $(FPC) -iVSPTPSOTO)
  140. endif
  141. ifndef FPC_VERSION
  142. FPC_VERSION:=$(word 1,$(FPC_COMPILERINFO))
  143. endif
  144. export FPC FPC_VERSION FPC_COMPILERINFO
  145. unexport CHECKDEPEND ALLDEPENDENCIES
  146. ifndef CPU_TARGET
  147. ifdef CPU_TARGET_DEFAULT
  148. CPU_TARGET=$(CPU_TARGET_DEFAULT)
  149. endif
  150. endif
  151. ifndef OS_TARGET
  152. ifdef OS_TARGET_DEFAULT
  153. OS_TARGET=$(OS_TARGET_DEFAULT)
  154. endif
  155. endif
  156. ifndef CPU_SOURCE
  157. CPU_SOURCE:=$(word 2,$(FPC_COMPILERINFO))
  158. endif
  159. ifndef CPU_TARGET
  160. CPU_TARGET:=$(word 3,$(FPC_COMPILERINFO))
  161. endif
  162. ifndef OS_SOURCE
  163. OS_SOURCE:=$(word 4,$(FPC_COMPILERINFO))
  164. endif
  165. ifndef OS_TARGET
  166. OS_TARGET:=$(word 5,$(FPC_COMPILERINFO))
  167. endif
  168. FULL_TARGET=$(CPU_TARGET)-$(OS_TARGET)
  169. FULL_SOURCE=$(CPU_SOURCE)-$(OS_SOURCE)
  170. ifeq ($(CPU_TARGET),armeb)
  171. ARCH=arm
  172. override FPCOPT+=-Cb
  173. else
  174. ifeq ($(CPU_TARGET),armel)
  175. ARCH=arm
  176. override FPCOPT+=-CaEABI
  177. else
  178. ARCH=$(CPU_TARGET)
  179. endif
  180. endif
  181. ifeq ($(FULL_TARGET),arm-embedded)
  182. ifeq ($(SUBARCH),)
  183. $(error When compiling for arm-embedded, a sub-architecture (e.g. SUBARCH=armv4t or SUBARCH=armv7m) must be defined)
  184. endif
  185. override FPCOPT+=-Cp$(SUBARCH)
  186. endif
  187. ifeq ($(FULL_TARGET),mipsel-embedded)
  188. ifeq ($(SUBARCH),)
  189. $(error When compiling for mipsel-embedded, a sub-architecture (e.g. SUBARCH=pic32mx) must be defined)
  190. endif
  191. override FPCOPT+=-Cp$(SUBARCH)
  192. endif
  193. ifneq ($(findstring $(OS_SOURCE),$(LIMIT83fs)),)
  194. TARGETSUFFIX=$(OS_TARGET)
  195. SOURCESUFFIX=$(OS_SOURCE)
  196. else
  197. ifneq ($(findstring $(OS_TARGET),$(LIMIT83fs)),)
  198. TARGETSUFFIX=$(OS_TARGET)
  199. else
  200. TARGETSUFFIX=$(FULL_TARGET)
  201. endif
  202. SOURCESUFFIX=$(FULL_SOURCE)
  203. endif
  204. ifneq ($(FULL_TARGET),$(FULL_SOURCE))
  205. CROSSCOMPILE=1
  206. endif
  207. ifeq ($(findstring makefile,$(MAKECMDGOALS)),)
  208. ifeq ($(findstring $(FULL_TARGET),$(MAKEFILETARGETS)),)
  209. $(error The Makefile doesn't support target $(FULL_TARGET), please run fpcmake first)
  210. endif
  211. endif
  212. ifneq ($(findstring $(OS_TARGET),$(BSDs)),)
  213. BSDhier=1
  214. endif
  215. ifeq ($(OS_TARGET),linux)
  216. linuxHier=1
  217. endif
  218. ifndef CROSSCOMPILE
  219. BUILDFULLNATIVE=1
  220. export BUILDFULLNATIVE
  221. endif
  222. ifdef BUILDFULLNATIVE
  223. BUILDNATIVE=1
  224. export BUILDNATIVE
  225. endif
  226. export OS_TARGET OS_SOURCE ARCH CPU_TARGET CPU_SOURCE FULL_TARGET FULL_SOURCE TARGETSUFFIX SOURCESUFFIX CROSSCOMPILE
  227. ifdef FPCDIR
  228. override FPCDIR:=$(subst \,/,$(FPCDIR))
  229. ifeq ($(wildcard $(addprefix $(FPCDIR)/,rtl units)),)
  230. override FPCDIR=wrong
  231. endif
  232. else
  233. override FPCDIR=wrong
  234. endif
  235. ifdef DEFAULT_FPCDIR
  236. ifeq ($(FPCDIR),wrong)
  237. override FPCDIR:=$(subst \,/,$(DEFAULT_FPCDIR))
  238. ifeq ($(wildcard $(addprefix $(FPCDIR)/,rtl units)),)
  239. override FPCDIR=wrong
  240. endif
  241. endif
  242. endif
  243. ifeq ($(FPCDIR),wrong)
  244. ifdef inUnix
  245. override FPCDIR=/usr/local/lib/fpc/$(FPC_VERSION)
  246. ifeq ($(wildcard $(FPCDIR)/units),)
  247. override FPCDIR=/usr/lib/fpc/$(FPC_VERSION)
  248. endif
  249. else
  250. override FPCDIR:=$(subst /$(FPC),,$(firstword $(strip $(wildcard $(addsuffix /$(FPC),$(SEARCHPATH))))))
  251. override FPCDIR:=$(FPCDIR)/..
  252. ifeq ($(wildcard $(addprefix $(FPCDIR)/,rtl units)),)
  253. override FPCDIR:=$(FPCDIR)/..
  254. ifeq ($(wildcard $(addprefix $(FPCDIR)/,rtl units)),)
  255. override FPCDIR:=$(BASEDIR)
  256. ifeq ($(wildcard $(addprefix $(FPCDIR)/,rtl units)),)
  257. override FPCDIR=c:/pp
  258. endif
  259. endif
  260. endif
  261. endif
  262. endif
  263. ifndef CROSSBINDIR
  264. CROSSBINDIR:=$(wildcard $(FPCDIR)/bin/$(TARGETSUFFIX))
  265. endif
  266. ifneq ($(findstring $(OS_TARGET),darwin iphonesim),)
  267. ifeq ($(OS_SOURCE),darwin)
  268. DARWIN2DARWIN=1
  269. endif
  270. endif
  271. ifndef BINUTILSPREFIX
  272. ifndef CROSSBINDIR
  273. ifdef CROSSCOMPILE
  274. ifneq ($(OS_TARGET),msdos)
  275. ifndef DARWIN2DARWIN
  276. ifneq ($(CPU_TARGET),jvm)
  277. BINUTILSPREFIX=$(CPU_TARGET)-$(OS_TARGET)-
  278. ifeq ($(OS_TARGET),android)
  279. ifeq ($(CPU_TARGET),arm)
  280. BINUTILSPREFIX=arm-linux-androideabi-
  281. else
  282. ifeq ($(CPU_TARGET),i386)
  283. BINUTILSPREFIX=i686-linux-android-
  284. else
  285. ifeq ($(CPU_TARGET),mipsel)
  286. BINUTILSPREFIX=mipsel-linux-android-
  287. endif
  288. endif
  289. endif
  290. endif
  291. endif
  292. endif
  293. else
  294. BINUTILSPREFIX=$(OS_TARGET)-
  295. endif
  296. endif
  297. endif
  298. endif
  299. UNITSDIR:=$(wildcard $(FPCDIR)/units/$(TARGETSUFFIX))
  300. ifeq ($(UNITSDIR),)
  301. UNITSDIR:=$(wildcard $(FPCDIR)/units/$(OS_TARGET))
  302. endif
  303. PACKAGESDIR:=$(wildcard $(FPCDIR) $(FPCDIR)/packages $(FPCDIR)/packages/base $(FPCDIR)/packages/extra)
  304. ifndef FPCFPMAKE
  305. ifdef CROSSCOMPILE
  306. ifeq ($(strip $(wildcard $(addsuffix /compiler/ppc$(SRCEXEEXT),$(FPCDIR)))),)
  307. FPCPROG:=$(strip $(wildcard $(addsuffix /fpc$(SRCEXEEXT),$(SEARCHPATH))))
  308. ifneq ($(FPCPROG),)
  309. FPCPROG:=$(firstword $(FPCPROG))
  310. FPCFPMAKE:=$(shell $(FPCPROG) -PB)
  311. ifeq ($(strip $(wildcard $(FPCFPMAKE))),)
  312. FPCFPMAKE:=$(firstword $(FPCPROG))
  313. endif
  314. else
  315. override FPCFPMAKE=$(firstword $(strip $(wildcard $(addsuffix /ppc386$(SRCEXEEXT),$(SEARCHPATH)))))
  316. endif
  317. else
  318. FPCFPMAKE=$(strip $(wildcard $(addsuffix /compiler/ppc$(SRCEXEEXT),$(FPCDIR))))
  319. FPMAKE_SKIP_CONFIG=-n
  320. export FPCFPMAKE
  321. export FPMAKE_SKIP_CONFIG
  322. endif
  323. else
  324. FPMAKE_SKIP_CONFIG=-n
  325. FPCFPMAKE=$(FPC)
  326. endif
  327. endif
  328. ifeq ($(FULL_TARGET),i386-linux)
  329. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85 sockcli isockcli dsockcli socksvr isocksvr dsocksvr testhres testnres testsres testrhre testrnre testrsre testur ipcserver ipcclient debugtest dbugsrv asiotest testtimer
  330. endif
  331. ifeq ($(FULL_TARGET),i386-go32v2)
  332. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  333. endif
  334. ifeq ($(FULL_TARGET),i386-win32)
  335. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85 showver testproc testhres testnres testsres testrhre testrnre testrsre testur ipcserver ipcclient debugtest dbugsrv testtimer
  336. endif
  337. ifeq ($(FULL_TARGET),i386-os2)
  338. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85 isockcli isocksvr testhres testnres testsres testrhre testrnre testrsre testur
  339. endif
  340. ifeq ($(FULL_TARGET),i386-freebsd)
  341. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85 sockcli isockcli dsockcli socksvr isocksvr dsocksvr testhres testnres testsres testrhre testrnre testrsre testur ipcserver ipcclient debugtest dbugsrv asiotest testtimer
  342. endif
  343. ifeq ($(FULL_TARGET),i386-beos)
  344. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  345. endif
  346. ifeq ($(FULL_TARGET),i386-haiku)
  347. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  348. endif
  349. ifeq ($(FULL_TARGET),i386-netbsd)
  350. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  351. endif
  352. ifeq ($(FULL_TARGET),i386-solaris)
  353. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85 sockcli isockcli dsockcli socksvr isocksvr dsocksvr testhres testnres testsres testrhre testrnre testrsre testur ipcserver ipcclient debugtest dbugsrv asiotest testtimer
  354. endif
  355. ifeq ($(FULL_TARGET),i386-qnx)
  356. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  357. endif
  358. ifeq ($(FULL_TARGET),i386-netware)
  359. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  360. endif
  361. ifeq ($(FULL_TARGET),i386-openbsd)
  362. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  363. endif
  364. ifeq ($(FULL_TARGET),i386-wdosx)
  365. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  366. endif
  367. ifeq ($(FULL_TARGET),i386-darwin)
  368. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85 sockcli isockcli dsockcli socksvr isocksvr dsocksvr testhres testnres testsres testrhre testrnre testrsre testur ipcserver ipcclient debugtest dbugsrv asiotest testtimer
  369. endif
  370. ifeq ($(FULL_TARGET),i386-emx)
  371. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85 isockcli isocksvr testhres testnres testsres testrhre testrnre testrsre testur
  372. endif
  373. ifeq ($(FULL_TARGET),i386-watcom)
  374. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  375. endif
  376. ifeq ($(FULL_TARGET),i386-netwlibc)
  377. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  378. endif
  379. ifeq ($(FULL_TARGET),i386-wince)
  380. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  381. endif
  382. ifeq ($(FULL_TARGET),i386-embedded)
  383. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  384. endif
  385. ifeq ($(FULL_TARGET),i386-symbian)
  386. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  387. endif
  388. ifeq ($(FULL_TARGET),i386-nativent)
  389. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  390. endif
  391. ifeq ($(FULL_TARGET),i386-iphonesim)
  392. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85 sockcli isockcli dsockcli socksvr isocksvr dsocksvr testhres testnres testsres testrhre testrnre testrsre testur ipcserver ipcclient debugtest dbugsrv asiotest testtimer
  393. endif
  394. ifeq ($(FULL_TARGET),i386-android)
  395. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  396. endif
  397. ifeq ($(FULL_TARGET),i386-aros)
  398. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  399. endif
  400. ifeq ($(FULL_TARGET),m68k-linux)
  401. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85 sockcli isockcli dsockcli socksvr isocksvr dsocksvr testhres testnres testsres testrhre testrnre testrsre testur ipcserver ipcclient debugtest dbugsrv asiotest testtimer
  402. endif
  403. ifeq ($(FULL_TARGET),m68k-freebsd)
  404. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85 sockcli isockcli dsockcli socksvr isocksvr dsocksvr testhres testnres testsres testrhre testrnre testrsre testur ipcserver ipcclient debugtest dbugsrv asiotest testtimer
  405. endif
  406. ifeq ($(FULL_TARGET),m68k-netbsd)
  407. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  408. endif
  409. ifeq ($(FULL_TARGET),m68k-amiga)
  410. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  411. endif
  412. ifeq ($(FULL_TARGET),m68k-atari)
  413. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  414. endif
  415. ifeq ($(FULL_TARGET),m68k-openbsd)
  416. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  417. endif
  418. ifeq ($(FULL_TARGET),m68k-palmos)
  419. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  420. endif
  421. ifeq ($(FULL_TARGET),m68k-embedded)
  422. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  423. endif
  424. ifeq ($(FULL_TARGET),powerpc-linux)
  425. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85 sockcli isockcli dsockcli socksvr isocksvr dsocksvr testhres testnres testsres testrhre testrnre testrsre testur ipcserver ipcclient debugtest dbugsrv asiotest testtimer
  426. endif
  427. ifeq ($(FULL_TARGET),powerpc-netbsd)
  428. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  429. endif
  430. ifeq ($(FULL_TARGET),powerpc-amiga)
  431. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  432. endif
  433. ifeq ($(FULL_TARGET),powerpc-macos)
  434. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  435. endif
  436. ifeq ($(FULL_TARGET),powerpc-darwin)
  437. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85 sockcli isockcli dsockcli socksvr isocksvr dsocksvr testhres testnres testsres testrhre testrnre testrsre testur ipcserver ipcclient debugtest dbugsrv asiotest testtimer
  438. endif
  439. ifeq ($(FULL_TARGET),powerpc-morphos)
  440. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  441. endif
  442. ifeq ($(FULL_TARGET),powerpc-embedded)
  443. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  444. endif
  445. ifeq ($(FULL_TARGET),powerpc-wii)
  446. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  447. endif
  448. ifeq ($(FULL_TARGET),powerpc-aix)
  449. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  450. endif
  451. ifeq ($(FULL_TARGET),sparc-linux)
  452. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85 sockcli isockcli dsockcli socksvr isocksvr dsocksvr testhres testnres testsres testrhre testrnre testrsre testur ipcserver ipcclient debugtest dbugsrv asiotest testtimer
  453. endif
  454. ifeq ($(FULL_TARGET),sparc-netbsd)
  455. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  456. endif
  457. ifeq ($(FULL_TARGET),sparc-solaris)
  458. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85 sockcli isockcli dsockcli socksvr isocksvr dsocksvr testhres testnres testsres testrhre testrnre testrsre testur ipcserver ipcclient debugtest dbugsrv asiotest testtimer
  459. endif
  460. ifeq ($(FULL_TARGET),sparc-embedded)
  461. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  462. endif
  463. ifeq ($(FULL_TARGET),x86_64-linux)
  464. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85 sockcli isockcli dsockcli socksvr isocksvr dsocksvr testhres testnres testsres testrhre testrnre testrsre testur ipcserver ipcclient debugtest dbugsrv asiotest testtimer
  465. endif
  466. ifeq ($(FULL_TARGET),x86_64-freebsd)
  467. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85 sockcli isockcli dsockcli socksvr isocksvr dsocksvr testhres testnres testsres testrhre testrnre testrsre testur ipcserver ipcclient debugtest dbugsrv asiotest testtimer
  468. endif
  469. ifeq ($(FULL_TARGET),x86_64-netbsd)
  470. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  471. endif
  472. ifeq ($(FULL_TARGET),x86_64-solaris)
  473. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85 sockcli isockcli dsockcli socksvr isocksvr dsocksvr testhres testnres testsres testrhre testrnre testrsre testur ipcserver ipcclient debugtest dbugsrv asiotest testtimer
  474. endif
  475. ifeq ($(FULL_TARGET),x86_64-openbsd)
  476. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  477. endif
  478. ifeq ($(FULL_TARGET),x86_64-darwin)
  479. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85 sockcli isockcli dsockcli socksvr isocksvr dsocksvr testhres testnres testsres testrhre testrnre testrsre testur ipcserver ipcclient debugtest dbugsrv asiotest testtimer
  480. endif
  481. ifeq ($(FULL_TARGET),x86_64-win64)
  482. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  483. endif
  484. ifeq ($(FULL_TARGET),x86_64-embedded)
  485. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  486. endif
  487. ifeq ($(FULL_TARGET),x86_64-dragonfly)
  488. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  489. endif
  490. ifeq ($(FULL_TARGET),arm-linux)
  491. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85 sockcli isockcli dsockcli socksvr isocksvr dsocksvr testhres testnres testsres testrhre testrnre testrsre testur ipcserver ipcclient debugtest dbugsrv asiotest testtimer
  492. endif
  493. ifeq ($(FULL_TARGET),arm-palmos)
  494. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  495. endif
  496. ifeq ($(FULL_TARGET),arm-darwin)
  497. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85 sockcli isockcli dsockcli socksvr isocksvr dsocksvr testhres testnres testsres testrhre testrnre testrsre testur ipcserver ipcclient debugtest dbugsrv asiotest testtimer
  498. endif
  499. ifeq ($(FULL_TARGET),arm-wince)
  500. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  501. endif
  502. ifeq ($(FULL_TARGET),arm-gba)
  503. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  504. endif
  505. ifeq ($(FULL_TARGET),arm-nds)
  506. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  507. endif
  508. ifeq ($(FULL_TARGET),arm-embedded)
  509. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  510. endif
  511. ifeq ($(FULL_TARGET),arm-symbian)
  512. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  513. endif
  514. ifeq ($(FULL_TARGET),arm-android)
  515. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  516. endif
  517. ifeq ($(FULL_TARGET),powerpc64-linux)
  518. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85 sockcli isockcli dsockcli socksvr isocksvr dsocksvr testhres testnres testsres testrhre testrnre testrsre testur ipcserver ipcclient debugtest dbugsrv asiotest testtimer
  519. endif
  520. ifeq ($(FULL_TARGET),powerpc64-darwin)
  521. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85 sockcli isockcli dsockcli socksvr isocksvr dsocksvr testhres testnres testsres testrhre testrnre testrsre testur ipcserver ipcclient debugtest dbugsrv asiotest testtimer
  522. endif
  523. ifeq ($(FULL_TARGET),powerpc64-embedded)
  524. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  525. endif
  526. ifeq ($(FULL_TARGET),powerpc64-aix)
  527. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  528. endif
  529. ifeq ($(FULL_TARGET),avr-embedded)
  530. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  531. endif
  532. ifeq ($(FULL_TARGET),armeb-linux)
  533. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85 sockcli isockcli dsockcli socksvr isocksvr dsocksvr testhres testnres testsres testrhre testrnre testrsre testur ipcserver ipcclient debugtest dbugsrv asiotest testtimer
  534. endif
  535. ifeq ($(FULL_TARGET),armeb-embedded)
  536. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  537. endif
  538. ifeq ($(FULL_TARGET),mips-linux)
  539. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85 sockcli isockcli dsockcli socksvr isocksvr dsocksvr testhres testnres testsres testrhre testrnre testrsre testur ipcserver ipcclient debugtest dbugsrv asiotest testtimer
  540. endif
  541. ifeq ($(FULL_TARGET),mipsel-linux)
  542. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85 sockcli isockcli dsockcli socksvr isocksvr dsocksvr testhres testnres testsres testrhre testrnre testrsre testur ipcserver ipcclient debugtest dbugsrv asiotest testtimer
  543. endif
  544. ifeq ($(FULL_TARGET),mipsel-embedded)
  545. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  546. endif
  547. ifeq ($(FULL_TARGET),mipsel-android)
  548. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  549. endif
  550. ifeq ($(FULL_TARGET),jvm-java)
  551. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  552. endif
  553. ifeq ($(FULL_TARGET),jvm-android)
  554. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  555. endif
  556. ifeq ($(FULL_TARGET),i8086-msdos)
  557. override TARGET_PROGRAMS+=stringl dparser fstream mstream list threads testrtf cfgtest xmldump htdump testez tidea b64test b64test2 b64enc b64dec restest testz testz2 istream doecho testol testcont txmlreg testreg tstelcmd testapp testcgi testbs testbf cachetest poolmm1 poolmm2 tarmakercons tarmakerconsgzip avltreetest testmime decodeascii85 encodeascii85
  558. endif
  559. override INSTALL_FPCPACKAGE=y
  560. ifdef REQUIRE_UNITSDIR
  561. override UNITSDIR+=$(REQUIRE_UNITSDIR)
  562. endif
  563. ifdef REQUIRE_PACKAGESDIR
  564. override PACKAGESDIR+=$(REQUIRE_PACKAGESDIR)
  565. endif
  566. ifdef ZIPINSTALL
  567. ifneq ($(findstring $(OS_TARGET),$(UNIXs)),)
  568. UNIXHier=1
  569. endif
  570. else
  571. ifneq ($(findstring $(OS_SOURCE),$(UNIXs)),)
  572. UNIXHier=1
  573. endif
  574. endif
  575. ifndef INSTALL_PREFIX
  576. ifdef PREFIX
  577. INSTALL_PREFIX=$(PREFIX)
  578. endif
  579. endif
  580. ifndef INSTALL_PREFIX
  581. ifdef UNIXHier
  582. INSTALL_PREFIX=/usr/local
  583. else
  584. ifdef INSTALL_FPCPACKAGE
  585. INSTALL_BASEDIR:=/pp
  586. else
  587. INSTALL_BASEDIR:=/$(PACKAGE_NAME)
  588. endif
  589. endif
  590. endif
  591. export INSTALL_PREFIX
  592. ifdef INSTALL_FPCSUBDIR
  593. export INSTALL_FPCSUBDIR
  594. endif
  595. ifndef DIST_DESTDIR
  596. DIST_DESTDIR:=$(BASEDIR)
  597. endif
  598. export DIST_DESTDIR
  599. ifndef COMPILER_UNITTARGETDIR
  600. ifdef PACKAGEDIR_MAIN
  601. COMPILER_UNITTARGETDIR=$(PACKAGEDIR_MAIN)/units/$(TARGETSUFFIX)
  602. else
  603. COMPILER_UNITTARGETDIR=units/$(TARGETSUFFIX)
  604. endif
  605. endif
  606. ifndef COMPILER_TARGETDIR
  607. COMPILER_TARGETDIR=.
  608. endif
  609. ifndef INSTALL_BASEDIR
  610. ifdef UNIXHier
  611. ifdef INSTALL_FPCPACKAGE
  612. INSTALL_BASEDIR:=$(INSTALL_PREFIX)/lib/fpc/$(FPC_VERSION)
  613. else
  614. INSTALL_BASEDIR:=$(INSTALL_PREFIX)/lib/$(PACKAGE_NAME)
  615. endif
  616. else
  617. INSTALL_BASEDIR:=$(INSTALL_PREFIX)
  618. endif
  619. endif
  620. ifndef INSTALL_BINDIR
  621. ifdef UNIXHier
  622. INSTALL_BINDIR:=$(INSTALL_PREFIX)/bin
  623. else
  624. INSTALL_BINDIR:=$(INSTALL_BASEDIR)/bin
  625. ifdef INSTALL_FPCPACKAGE
  626. ifdef CROSSCOMPILE
  627. ifdef CROSSINSTALL
  628. INSTALL_BINDIR:=$(INSTALL_BINDIR)/$(SOURCESUFFIX)
  629. else
  630. INSTALL_BINDIR:=$(INSTALL_BINDIR)/$(TARGETSUFFIX)
  631. endif
  632. else
  633. INSTALL_BINDIR:=$(INSTALL_BINDIR)/$(TARGETSUFFIX)
  634. endif
  635. endif
  636. endif
  637. endif
  638. ifndef INSTALL_UNITDIR
  639. INSTALL_UNITDIR:=$(INSTALL_BASEDIR)/units/$(TARGETSUFFIX)
  640. ifdef INSTALL_FPCPACKAGE
  641. ifdef PACKAGE_NAME
  642. INSTALL_UNITDIR:=$(INSTALL_UNITDIR)/$(PACKAGE_NAME)
  643. endif
  644. endif
  645. endif
  646. ifndef INSTALL_LIBDIR
  647. ifdef UNIXHier
  648. INSTALL_LIBDIR:=$(INSTALL_PREFIX)/lib
  649. else
  650. INSTALL_LIBDIR:=$(INSTALL_UNITDIR)
  651. endif
  652. endif
  653. ifndef INSTALL_SOURCEDIR
  654. ifdef UNIXHier
  655. ifdef BSDhier
  656. SRCPREFIXDIR=share/src
  657. else
  658. ifdef linuxHier
  659. SRCPREFIXDIR=share/src
  660. else
  661. SRCPREFIXDIR=src
  662. endif
  663. endif
  664. ifdef INSTALL_FPCPACKAGE
  665. ifdef INSTALL_FPCSUBDIR
  666. INSTALL_SOURCEDIR:=$(INSTALL_PREFIX)/$(SRCPREFIXDIR)/fpc-$(FPC_VERSION)/$(INSTALL_FPCSUBDIR)/$(PACKAGE_NAME)
  667. else
  668. INSTALL_SOURCEDIR:=$(INSTALL_PREFIX)/$(SRCPREFIXDIR)/fpc-$(FPC_VERSION)/$(PACKAGE_NAME)
  669. endif
  670. else
  671. INSTALL_SOURCEDIR:=$(INSTALL_PREFIX)/$(SRCPREFIXDIR)/$(PACKAGE_NAME)-$(PACKAGE_VERSION)
  672. endif
  673. else
  674. ifdef INSTALL_FPCPACKAGE
  675. ifdef INSTALL_FPCSUBDIR
  676. INSTALL_SOURCEDIR:=$(INSTALL_BASEDIR)/source/$(INSTALL_FPCSUBDIR)/$(PACKAGE_NAME)
  677. else
  678. INSTALL_SOURCEDIR:=$(INSTALL_BASEDIR)/source/$(PACKAGE_NAME)
  679. endif
  680. else
  681. INSTALL_SOURCEDIR:=$(INSTALL_BASEDIR)/source
  682. endif
  683. endif
  684. endif
  685. ifndef INSTALL_DOCDIR
  686. ifdef UNIXHier
  687. ifdef BSDhier
  688. DOCPREFIXDIR=share/doc
  689. else
  690. ifdef linuxHier
  691. DOCPREFIXDIR=share/doc
  692. else
  693. DOCPREFIXDIR=doc
  694. endif
  695. endif
  696. ifdef INSTALL_FPCPACKAGE
  697. INSTALL_DOCDIR:=$(INSTALL_PREFIX)/$(DOCPREFIXDIR)/fpc-$(FPC_VERSION)/$(PACKAGE_NAME)
  698. else
  699. INSTALL_DOCDIR:=$(INSTALL_PREFIX)/$(DOCPREFIXDIR)/$(PACKAGE_NAME)-$(PACKAGE_VERSION)
  700. endif
  701. else
  702. ifdef INSTALL_FPCPACKAGE
  703. INSTALL_DOCDIR:=$(INSTALL_BASEDIR)/doc/$(PACKAGE_NAME)
  704. else
  705. INSTALL_DOCDIR:=$(INSTALL_BASEDIR)/doc
  706. endif
  707. endif
  708. endif
  709. ifndef INSTALL_EXAMPLEDIR
  710. ifdef UNIXHier
  711. ifdef INSTALL_FPCPACKAGE
  712. ifdef BSDhier
  713. INSTALL_EXAMPLEDIR:=$(INSTALL_PREFIX)/share/examples/fpc-$(FPC_VERSION)/$(PACKAGE_NAME)
  714. else
  715. ifdef linuxHier
  716. INSTALL_EXAMPLEDIR:=$(INSTALL_DOCDIR)/examples
  717. else
  718. INSTALL_EXAMPLEDIR:=$(INSTALL_PREFIX)/doc/fpc-$(FPC_VERSION)/examples/$(PACKAGE_NAME)
  719. endif
  720. endif
  721. else
  722. ifdef BSDhier
  723. INSTALL_EXAMPLEDIR:=$(INSTALL_PREFIX)/share/examples/$(PACKAGE_NAME)-$(PACKAGE_VERSION)
  724. else
  725. ifdef linuxHier
  726. INSTALL_EXAMPLEDIR:=$(INSTALL_DOCDIR)/examples/$(PACKAGE_NAME)-$(PACKAGE_VERSION)
  727. else
  728. INSTALL_EXAMPLEDIR:=$(INSTALL_PREFIX)/doc/$(PACKAGE_NAME)-$(PACKAGE_VERSION)
  729. endif
  730. endif
  731. endif
  732. else
  733. ifdef INSTALL_FPCPACKAGE
  734. INSTALL_EXAMPLEDIR:=$(INSTALL_BASEDIR)/examples/$(PACKAGE_NAME)
  735. else
  736. INSTALL_EXAMPLEDIR:=$(INSTALL_BASEDIR)/examples
  737. endif
  738. endif
  739. endif
  740. ifndef INSTALL_DATADIR
  741. INSTALL_DATADIR=$(INSTALL_BASEDIR)
  742. endif
  743. ifndef INSTALL_SHAREDDIR
  744. INSTALL_SHAREDDIR=$(INSTALL_PREFIX)/lib
  745. endif
  746. ifdef CROSSCOMPILE
  747. ifndef CROSSBINDIR
  748. CROSSBINDIR:=$(wildcard $(CROSSTARGETDIR)/bin/$(SOURCESUFFIX))
  749. ifeq ($(CROSSBINDIR),)
  750. CROSSBINDIR:=$(wildcard $(INSTALL_BASEDIR)/cross/$(TARGETSUFFIX)/bin/$(FULL_SOURCE))
  751. endif
  752. endif
  753. else
  754. CROSSBINDIR=
  755. endif
  756. BATCHEXT=.bat
  757. LOADEREXT=.as
  758. EXEEXT=.exe
  759. PPLEXT=.ppl
  760. PPUEXT=.ppu
  761. OEXT=.o
  762. ASMEXT=.s
  763. SMARTEXT=.sl
  764. STATICLIBEXT=.a
  765. SHAREDLIBEXT=.so
  766. SHAREDLIBPREFIX=libfp
  767. STATICLIBPREFIX=libp
  768. IMPORTLIBPREFIX=libimp
  769. RSTEXT=.rst
  770. EXEDBGEXT=.dbg
  771. ifeq ($(OS_TARGET),go32v1)
  772. STATICLIBPREFIX=
  773. SHORTSUFFIX=v1
  774. endif
  775. ifeq ($(OS_TARGET),go32v2)
  776. STATICLIBPREFIX=
  777. SHORTSUFFIX=dos
  778. IMPORTLIBPREFIX=
  779. endif
  780. ifeq ($(OS_TARGET),watcom)
  781. STATICLIBPREFIX=
  782. OEXT=.obj
  783. ASMEXT=.asm
  784. SHAREDLIBEXT=.dll
  785. SHORTSUFFIX=wat
  786. IMPORTLIBPREFIX=
  787. endif
  788. ifneq ($(CPU_TARGET),jvm)
  789. ifeq ($(OS_TARGET),android)
  790. BATCHEXT=.sh
  791. EXEEXT=
  792. HASSHAREDLIB=1
  793. SHORTSUFFIX=lnx
  794. endif
  795. endif
  796. ifeq ($(OS_TARGET),linux)
  797. BATCHEXT=.sh
  798. EXEEXT=
  799. HASSHAREDLIB=1
  800. SHORTSUFFIX=lnx
  801. endif
  802. ifeq ($(OS_TARGET),dragonfly)
  803. BATCHEXT=.sh
  804. EXEEXT=
  805. HASSHAREDLIB=1
  806. SHORTSUFFIX=df
  807. endif
  808. ifeq ($(OS_TARGET),freebsd)
  809. BATCHEXT=.sh
  810. EXEEXT=
  811. HASSHAREDLIB=1
  812. SHORTSUFFIX=fbs
  813. endif
  814. ifeq ($(OS_TARGET),netbsd)
  815. BATCHEXT=.sh
  816. EXEEXT=
  817. HASSHAREDLIB=1
  818. SHORTSUFFIX=nbs
  819. endif
  820. ifeq ($(OS_TARGET),openbsd)
  821. BATCHEXT=.sh
  822. EXEEXT=
  823. HASSHAREDLIB=1
  824. SHORTSUFFIX=obs
  825. endif
  826. ifeq ($(OS_TARGET),win32)
  827. SHAREDLIBEXT=.dll
  828. SHORTSUFFIX=w32
  829. endif
  830. ifeq ($(OS_TARGET),os2)
  831. BATCHEXT=.cmd
  832. AOUTEXT=.out
  833. STATICLIBPREFIX=
  834. SHAREDLIBEXT=.dll
  835. SHORTSUFFIX=os2
  836. ECHO=echo
  837. IMPORTLIBPREFIX=
  838. endif
  839. ifeq ($(OS_TARGET),emx)
  840. BATCHEXT=.cmd
  841. AOUTEXT=.out
  842. STATICLIBPREFIX=
  843. SHAREDLIBEXT=.dll
  844. SHORTSUFFIX=emx
  845. ECHO=echo
  846. IMPORTLIBPREFIX=
  847. endif
  848. ifeq ($(OS_TARGET),amiga)
  849. EXEEXT=
  850. SHAREDLIBEXT=.library
  851. SHORTSUFFIX=amg
  852. endif
  853. ifeq ($(OS_TARGET),aros)
  854. EXEEXT=
  855. SHAREDLIBEXT=.library
  856. SHORTSUFFIX=aros
  857. endif
  858. ifeq ($(OS_TARGET),morphos)
  859. EXEEXT=
  860. SHAREDLIBEXT=.library
  861. SHORTSUFFIX=mos
  862. endif
  863. ifeq ($(OS_TARGET),atari)
  864. EXEEXT=.ttp
  865. SHORTSUFFIX=ata
  866. endif
  867. ifeq ($(OS_TARGET),beos)
  868. BATCHEXT=.sh
  869. EXEEXT=
  870. SHORTSUFFIX=be
  871. endif
  872. ifeq ($(OS_TARGET),haiku)
  873. BATCHEXT=.sh
  874. EXEEXT=
  875. SHORTSUFFIX=hai
  876. endif
  877. ifeq ($(OS_TARGET),solaris)
  878. BATCHEXT=.sh
  879. EXEEXT=
  880. SHORTSUFFIX=sun
  881. endif
  882. ifeq ($(OS_TARGET),qnx)
  883. BATCHEXT=.sh
  884. EXEEXT=
  885. SHORTSUFFIX=qnx
  886. endif
  887. ifeq ($(OS_TARGET),netware)
  888. EXEEXT=.nlm
  889. STATICLIBPREFIX=
  890. SHORTSUFFIX=nw
  891. IMPORTLIBPREFIX=imp
  892. endif
  893. ifeq ($(OS_TARGET),netwlibc)
  894. EXEEXT=.nlm
  895. STATICLIBPREFIX=
  896. SHORTSUFFIX=nwl
  897. IMPORTLIBPREFIX=imp
  898. endif
  899. ifeq ($(OS_TARGET),macos)
  900. BATCHEXT=
  901. EXEEXT=
  902. DEBUGSYMEXT=.xcoff
  903. SHORTSUFFIX=mac
  904. IMPORTLIBPREFIX=imp
  905. endif
  906. ifneq ($(findstring $(OS_TARGET),darwin iphonesim),)
  907. BATCHEXT=.sh
  908. EXEEXT=
  909. HASSHAREDLIB=1
  910. SHORTSUFFIX=dwn
  911. EXEDBGEXT=.dSYM
  912. endif
  913. ifeq ($(OS_TARGET),gba)
  914. EXEEXT=.gba
  915. SHAREDLIBEXT=.so
  916. SHORTSUFFIX=gba
  917. endif
  918. ifeq ($(OS_TARGET),symbian)
  919. SHAREDLIBEXT=.dll
  920. SHORTSUFFIX=symbian
  921. endif
  922. ifeq ($(OS_TARGET),NativeNT)
  923. SHAREDLIBEXT=.dll
  924. SHORTSUFFIX=nativent
  925. endif
  926. ifeq ($(OS_TARGET),wii)
  927. EXEEXT=.dol
  928. SHAREDLIBEXT=.so
  929. SHORTSUFFIX=wii
  930. endif
  931. ifeq ($(OS_TARGET),aix)
  932. BATCHEXT=.sh
  933. EXEEXT=
  934. SHORTSUFFIX=aix
  935. endif
  936. ifeq ($(OS_TARGET),java)
  937. OEXT=.class
  938. ASMEXT=.j
  939. SHAREDLIBEXT=.jar
  940. SHORTSUFFIX=java
  941. endif
  942. ifeq ($(CPU_TARGET),jvm)
  943. ifeq ($(OS_TARGET),android)
  944. OEXT=.class
  945. ASMEXT=.j
  946. SHAREDLIBEXT=.jar
  947. SHORTSUFFIX=android
  948. endif
  949. endif
  950. ifeq ($(OS_TARGET),msdos)
  951. STATICLIBPREFIX=
  952. STATICLIBEXT=.a
  953. SHORTSUFFIX=d16
  954. endif
  955. ifneq ($(findstring $(OS_SOURCE),$(LIMIT83fs)),)
  956. FPCMADE=fpcmade.$(SHORTSUFFIX)
  957. ZIPSUFFIX=$(SHORTSUFFIX)
  958. ZIPCROSSPREFIX=
  959. ZIPSOURCESUFFIX=src
  960. ZIPEXAMPLESUFFIX=exm
  961. else
  962. FPCMADE=fpcmade.$(TARGETSUFFIX)
  963. ZIPSOURCESUFFIX=.source
  964. ZIPEXAMPLESUFFIX=.examples
  965. ifdef CROSSCOMPILE
  966. ZIPSUFFIX=.$(SOURCESUFFIX)
  967. ZIPCROSSPREFIX=$(TARGETSUFFIX)-
  968. else
  969. ZIPSUFFIX=.$(TARGETSUFFIX)
  970. ZIPCROSSPREFIX=
  971. endif
  972. endif
  973. ifndef ECHO
  974. ECHO:=$(strip $(wildcard $(addsuffix /gecho$(SRCEXEEXT),$(SEARCHPATH))))
  975. ifeq ($(ECHO),)
  976. ECHO:=$(strip $(wildcard $(addsuffix /echo$(SRCEXEEXT),$(SEARCHPATH))))
  977. ifeq ($(ECHO),)
  978. ECHO= __missing_command_ECHO
  979. else
  980. ECHO:=$(firstword $(ECHO))
  981. endif
  982. else
  983. ECHO:=$(firstword $(ECHO))
  984. endif
  985. endif
  986. export ECHO
  987. ifndef DATE
  988. DATE:=$(strip $(wildcard $(addsuffix /gdate$(SRCEXEEXT),$(SEARCHPATH))))
  989. ifeq ($(DATE),)
  990. DATE:=$(strip $(wildcard $(addsuffix /date$(SRCEXEEXT),$(SEARCHPATH))))
  991. ifeq ($(DATE),)
  992. DATE= __missing_command_DATE
  993. else
  994. DATE:=$(firstword $(DATE))
  995. endif
  996. else
  997. DATE:=$(firstword $(DATE))
  998. endif
  999. endif
  1000. export DATE
  1001. ifndef GINSTALL
  1002. GINSTALL:=$(strip $(wildcard $(addsuffix /ginstall$(SRCEXEEXT),$(SEARCHPATH))))
  1003. ifeq ($(GINSTALL),)
  1004. GINSTALL:=$(strip $(wildcard $(addsuffix /install$(SRCEXEEXT),$(SEARCHPATH))))
  1005. ifeq ($(GINSTALL),)
  1006. GINSTALL= __missing_command_GINSTALL
  1007. else
  1008. GINSTALL:=$(firstword $(GINSTALL))
  1009. endif
  1010. else
  1011. GINSTALL:=$(firstword $(GINSTALL))
  1012. endif
  1013. endif
  1014. export GINSTALL
  1015. ifndef CPPROG
  1016. CPPROG:=$(strip $(wildcard $(addsuffix /cp$(SRCEXEEXT),$(SEARCHPATH))))
  1017. ifeq ($(CPPROG),)
  1018. CPPROG= __missing_command_CPPROG
  1019. else
  1020. CPPROG:=$(firstword $(CPPROG))
  1021. endif
  1022. endif
  1023. export CPPROG
  1024. ifndef RMPROG
  1025. RMPROG:=$(strip $(wildcard $(addsuffix /rm$(SRCEXEEXT),$(SEARCHPATH))))
  1026. ifeq ($(RMPROG),)
  1027. RMPROG= __missing_command_RMPROG
  1028. else
  1029. RMPROG:=$(firstword $(RMPROG))
  1030. endif
  1031. endif
  1032. export RMPROG
  1033. ifndef MVPROG
  1034. MVPROG:=$(strip $(wildcard $(addsuffix /mv$(SRCEXEEXT),$(SEARCHPATH))))
  1035. ifeq ($(MVPROG),)
  1036. MVPROG= __missing_command_MVPROG
  1037. else
  1038. MVPROG:=$(firstword $(MVPROG))
  1039. endif
  1040. endif
  1041. export MVPROG
  1042. ifndef MKDIRPROG
  1043. MKDIRPROG:=$(strip $(wildcard $(addsuffix /gmkdir$(SRCEXEEXT),$(SEARCHPATH))))
  1044. ifeq ($(MKDIRPROG),)
  1045. MKDIRPROG:=$(strip $(wildcard $(addsuffix /mkdir$(SRCEXEEXT),$(SEARCHPATH))))
  1046. ifeq ($(MKDIRPROG),)
  1047. MKDIRPROG= __missing_command_MKDIRPROG
  1048. else
  1049. MKDIRPROG:=$(firstword $(MKDIRPROG))
  1050. endif
  1051. else
  1052. MKDIRPROG:=$(firstword $(MKDIRPROG))
  1053. endif
  1054. endif
  1055. export MKDIRPROG
  1056. ifndef ECHOREDIR
  1057. ifndef inUnix
  1058. ECHOREDIR=echo
  1059. else
  1060. ECHOREDIR=$(ECHO)
  1061. endif
  1062. endif
  1063. ifndef COPY
  1064. COPY:=$(CPPROG) -fp
  1065. endif
  1066. ifndef COPYTREE
  1067. COPYTREE:=$(CPPROG) -Rfp
  1068. endif
  1069. ifndef MKDIRTREE
  1070. MKDIRTREE:=$(MKDIRPROG) -p
  1071. endif
  1072. ifndef MOVE
  1073. MOVE:=$(MVPROG) -f
  1074. endif
  1075. ifndef DEL
  1076. DEL:=$(RMPROG) -f
  1077. endif
  1078. ifndef DELTREE
  1079. DELTREE:=$(RMPROG) -rf
  1080. endif
  1081. ifndef INSTALL
  1082. ifdef inUnix
  1083. INSTALL:=$(GINSTALL) -c -m 644
  1084. else
  1085. INSTALL:=$(COPY)
  1086. endif
  1087. endif
  1088. ifndef INSTALLEXE
  1089. ifdef inUnix
  1090. INSTALLEXE:=$(GINSTALL) -c -m 755
  1091. else
  1092. INSTALLEXE:=$(COPY)
  1093. endif
  1094. endif
  1095. ifndef MKDIR
  1096. MKDIR:=$(GINSTALL) -m 755 -d
  1097. endif
  1098. export ECHOREDIR COPY COPYTREE MOVE DEL DELTREE INSTALL INSTALLEXE MKDIR
  1099. ifndef PPUMOVE
  1100. PPUMOVE:=$(strip $(wildcard $(addsuffix /ppumove$(SRCEXEEXT),$(SEARCHPATH))))
  1101. ifeq ($(PPUMOVE),)
  1102. PPUMOVE= __missing_command_PPUMOVE
  1103. else
  1104. PPUMOVE:=$(firstword $(PPUMOVE))
  1105. endif
  1106. endif
  1107. export PPUMOVE
  1108. ifndef FPCMAKE
  1109. FPCMAKE:=$(strip $(wildcard $(addsuffix /fpcmake$(SRCEXEEXT),$(SEARCHPATH))))
  1110. ifeq ($(FPCMAKE),)
  1111. FPCMAKE= __missing_command_FPCMAKE
  1112. else
  1113. FPCMAKE:=$(firstword $(FPCMAKE))
  1114. endif
  1115. endif
  1116. export FPCMAKE
  1117. ifndef ZIPPROG
  1118. ZIPPROG:=$(strip $(wildcard $(addsuffix /zip$(SRCEXEEXT),$(SEARCHPATH))))
  1119. ifeq ($(ZIPPROG),)
  1120. ZIPPROG= __missing_command_ZIPPROG
  1121. else
  1122. ZIPPROG:=$(firstword $(ZIPPROG))
  1123. endif
  1124. endif
  1125. export ZIPPROG
  1126. ifndef TARPROG
  1127. TARPROG:=$(strip $(wildcard $(addsuffix /gtar$(SRCEXEEXT),$(SEARCHPATH))))
  1128. ifeq ($(TARPROG),)
  1129. TARPROG:=$(strip $(wildcard $(addsuffix /tar$(SRCEXEEXT),$(SEARCHPATH))))
  1130. ifeq ($(TARPROG),)
  1131. TARPROG= __missing_command_TARPROG
  1132. else
  1133. TARPROG:=$(firstword $(TARPROG))
  1134. endif
  1135. else
  1136. TARPROG:=$(firstword $(TARPROG))
  1137. endif
  1138. endif
  1139. export TARPROG
  1140. ASNAME=$(BINUTILSPREFIX)as
  1141. LDNAME=$(BINUTILSPREFIX)ld
  1142. ARNAME=$(BINUTILSPREFIX)ar
  1143. RCNAME=$(BINUTILSPREFIX)rc
  1144. NASMNAME=$(BINUTILSPREFIX)nasm
  1145. ifndef ASPROG
  1146. ifdef CROSSBINDIR
  1147. ASPROG=$(CROSSBINDIR)/$(ASNAME)$(SRCEXEEXT)
  1148. else
  1149. ASPROG=$(ASNAME)
  1150. endif
  1151. endif
  1152. ifndef LDPROG
  1153. ifdef CROSSBINDIR
  1154. LDPROG=$(CROSSBINDIR)/$(LDNAME)$(SRCEXEEXT)
  1155. else
  1156. LDPROG=$(LDNAME)
  1157. endif
  1158. endif
  1159. ifndef RCPROG
  1160. ifdef CROSSBINDIR
  1161. RCPROG=$(CROSSBINDIR)/$(RCNAME)$(SRCEXEEXT)
  1162. else
  1163. RCPROG=$(RCNAME)
  1164. endif
  1165. endif
  1166. ifndef ARPROG
  1167. ifdef CROSSBINDIR
  1168. ARPROG=$(CROSSBINDIR)/$(ARNAME)$(SRCEXEEXT)
  1169. else
  1170. ARPROG=$(ARNAME)
  1171. endif
  1172. endif
  1173. ifndef NASMPROG
  1174. ifdef CROSSBINDIR
  1175. NASMPROG=$(CROSSBINDIR)/$(NASMNAME)$(SRCEXEEXT)
  1176. else
  1177. NASMPROG=$(NASMNAME)
  1178. endif
  1179. endif
  1180. AS=$(ASPROG)
  1181. LD=$(LDPROG)
  1182. RC=$(RCPROG)
  1183. AR=$(ARPROG)
  1184. NASM=$(NASMPROG)
  1185. ifdef inUnix
  1186. PPAS=./ppas$(SRCBATCHEXT)
  1187. else
  1188. PPAS=ppas$(SRCBATCHEXT)
  1189. endif
  1190. ifdef inUnix
  1191. LDCONFIG=ldconfig
  1192. else
  1193. LDCONFIG=
  1194. endif
  1195. ifdef DATE
  1196. DATESTR:=$(shell $(DATE) +%Y%m%d)
  1197. else
  1198. DATESTR=
  1199. endif
  1200. ZIPOPT=-9
  1201. ZIPEXT=.zip
  1202. ifeq ($(USETAR),bz2)
  1203. TAROPT=vj
  1204. TAREXT=.tar.bz2
  1205. else
  1206. TAROPT=vz
  1207. TAREXT=.tar.gz
  1208. endif
  1209. override REQUIRE_PACKAGES=rtl fcl-base fcl-db fcl-fpcunit fcl-image fcl-net fcl-passrc fcl-registry fcl-web fcl-xml
  1210. ifeq ($(FULL_TARGET),i386-linux)
  1211. REQUIRE_PACKAGES_RTL=1
  1212. REQUIRE_PACKAGES_PASZLIB=1
  1213. REQUIRE_PACKAGES_FCL-PROCESS=1
  1214. REQUIRE_PACKAGES_HASH=1
  1215. REQUIRE_PACKAGES_LIBTAR=1
  1216. REQUIRE_PACKAGES_FPMKUNIT=1
  1217. REQUIRE_PACKAGES_FCL-BASE=1
  1218. REQUIRE_PACKAGES_FCL-DB=1
  1219. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1220. REQUIRE_PACKAGES_FCL-IMAGE=1
  1221. REQUIRE_PACKAGES_FCL-NET=1
  1222. REQUIRE_PACKAGES_FCL-PASSRC=1
  1223. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1224. REQUIRE_PACKAGES_FCL-WEB=1
  1225. REQUIRE_PACKAGES_FCL-XML=1
  1226. endif
  1227. ifeq ($(FULL_TARGET),i386-go32v2)
  1228. REQUIRE_PACKAGES_RTL=1
  1229. REQUIRE_PACKAGES_PASZLIB=1
  1230. REQUIRE_PACKAGES_FCL-PROCESS=1
  1231. REQUIRE_PACKAGES_HASH=1
  1232. REQUIRE_PACKAGES_LIBTAR=1
  1233. REQUIRE_PACKAGES_FPMKUNIT=1
  1234. REQUIRE_PACKAGES_FCL-BASE=1
  1235. REQUIRE_PACKAGES_FCL-DB=1
  1236. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1237. REQUIRE_PACKAGES_FCL-IMAGE=1
  1238. REQUIRE_PACKAGES_FCL-NET=1
  1239. REQUIRE_PACKAGES_FCL-PASSRC=1
  1240. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1241. REQUIRE_PACKAGES_FCL-WEB=1
  1242. REQUIRE_PACKAGES_FCL-XML=1
  1243. endif
  1244. ifeq ($(FULL_TARGET),i386-win32)
  1245. REQUIRE_PACKAGES_RTL=1
  1246. REQUIRE_PACKAGES_PASZLIB=1
  1247. REQUIRE_PACKAGES_FCL-PROCESS=1
  1248. REQUIRE_PACKAGES_HASH=1
  1249. REQUIRE_PACKAGES_LIBTAR=1
  1250. REQUIRE_PACKAGES_FPMKUNIT=1
  1251. REQUIRE_PACKAGES_FCL-BASE=1
  1252. REQUIRE_PACKAGES_FCL-DB=1
  1253. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1254. REQUIRE_PACKAGES_FCL-IMAGE=1
  1255. REQUIRE_PACKAGES_FCL-NET=1
  1256. REQUIRE_PACKAGES_FCL-PASSRC=1
  1257. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1258. REQUIRE_PACKAGES_FCL-WEB=1
  1259. REQUIRE_PACKAGES_FCL-XML=1
  1260. endif
  1261. ifeq ($(FULL_TARGET),i386-os2)
  1262. REQUIRE_PACKAGES_RTL=1
  1263. REQUIRE_PACKAGES_PASZLIB=1
  1264. REQUIRE_PACKAGES_FCL-PROCESS=1
  1265. REQUIRE_PACKAGES_HASH=1
  1266. REQUIRE_PACKAGES_LIBTAR=1
  1267. REQUIRE_PACKAGES_FPMKUNIT=1
  1268. REQUIRE_PACKAGES_FCL-BASE=1
  1269. REQUIRE_PACKAGES_FCL-DB=1
  1270. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1271. REQUIRE_PACKAGES_FCL-IMAGE=1
  1272. REQUIRE_PACKAGES_FCL-NET=1
  1273. REQUIRE_PACKAGES_FCL-PASSRC=1
  1274. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1275. REQUIRE_PACKAGES_FCL-WEB=1
  1276. REQUIRE_PACKAGES_FCL-XML=1
  1277. endif
  1278. ifeq ($(FULL_TARGET),i386-freebsd)
  1279. REQUIRE_PACKAGES_RTL=1
  1280. REQUIRE_PACKAGES_PASZLIB=1
  1281. REQUIRE_PACKAGES_FCL-PROCESS=1
  1282. REQUIRE_PACKAGES_HASH=1
  1283. REQUIRE_PACKAGES_LIBTAR=1
  1284. REQUIRE_PACKAGES_FPMKUNIT=1
  1285. REQUIRE_PACKAGES_FCL-BASE=1
  1286. REQUIRE_PACKAGES_FCL-DB=1
  1287. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1288. REQUIRE_PACKAGES_FCL-IMAGE=1
  1289. REQUIRE_PACKAGES_FCL-NET=1
  1290. REQUIRE_PACKAGES_FCL-PASSRC=1
  1291. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1292. REQUIRE_PACKAGES_FCL-WEB=1
  1293. REQUIRE_PACKAGES_FCL-XML=1
  1294. endif
  1295. ifeq ($(FULL_TARGET),i386-beos)
  1296. REQUIRE_PACKAGES_RTL=1
  1297. REQUIRE_PACKAGES_PASZLIB=1
  1298. REQUIRE_PACKAGES_FCL-PROCESS=1
  1299. REQUIRE_PACKAGES_HASH=1
  1300. REQUIRE_PACKAGES_LIBTAR=1
  1301. REQUIRE_PACKAGES_FPMKUNIT=1
  1302. REQUIRE_PACKAGES_FCL-BASE=1
  1303. REQUIRE_PACKAGES_FCL-DB=1
  1304. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1305. REQUIRE_PACKAGES_FCL-IMAGE=1
  1306. REQUIRE_PACKAGES_FCL-NET=1
  1307. REQUIRE_PACKAGES_FCL-PASSRC=1
  1308. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1309. REQUIRE_PACKAGES_FCL-WEB=1
  1310. REQUIRE_PACKAGES_FCL-XML=1
  1311. endif
  1312. ifeq ($(FULL_TARGET),i386-haiku)
  1313. REQUIRE_PACKAGES_RTL=1
  1314. REQUIRE_PACKAGES_PASZLIB=1
  1315. REQUIRE_PACKAGES_FCL-PROCESS=1
  1316. REQUIRE_PACKAGES_HASH=1
  1317. REQUIRE_PACKAGES_LIBTAR=1
  1318. REQUIRE_PACKAGES_FPMKUNIT=1
  1319. REQUIRE_PACKAGES_FCL-BASE=1
  1320. REQUIRE_PACKAGES_FCL-DB=1
  1321. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1322. REQUIRE_PACKAGES_FCL-IMAGE=1
  1323. REQUIRE_PACKAGES_FCL-NET=1
  1324. REQUIRE_PACKAGES_FCL-PASSRC=1
  1325. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1326. REQUIRE_PACKAGES_FCL-WEB=1
  1327. REQUIRE_PACKAGES_FCL-XML=1
  1328. endif
  1329. ifeq ($(FULL_TARGET),i386-netbsd)
  1330. REQUIRE_PACKAGES_RTL=1
  1331. REQUIRE_PACKAGES_PASZLIB=1
  1332. REQUIRE_PACKAGES_FCL-PROCESS=1
  1333. REQUIRE_PACKAGES_HASH=1
  1334. REQUIRE_PACKAGES_LIBTAR=1
  1335. REQUIRE_PACKAGES_FPMKUNIT=1
  1336. REQUIRE_PACKAGES_FCL-BASE=1
  1337. REQUIRE_PACKAGES_FCL-DB=1
  1338. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1339. REQUIRE_PACKAGES_FCL-IMAGE=1
  1340. REQUIRE_PACKAGES_FCL-NET=1
  1341. REQUIRE_PACKAGES_FCL-PASSRC=1
  1342. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1343. REQUIRE_PACKAGES_FCL-WEB=1
  1344. REQUIRE_PACKAGES_FCL-XML=1
  1345. endif
  1346. ifeq ($(FULL_TARGET),i386-solaris)
  1347. REQUIRE_PACKAGES_RTL=1
  1348. REQUIRE_PACKAGES_PASZLIB=1
  1349. REQUIRE_PACKAGES_FCL-PROCESS=1
  1350. REQUIRE_PACKAGES_HASH=1
  1351. REQUIRE_PACKAGES_LIBTAR=1
  1352. REQUIRE_PACKAGES_FPMKUNIT=1
  1353. REQUIRE_PACKAGES_FCL-BASE=1
  1354. REQUIRE_PACKAGES_FCL-DB=1
  1355. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1356. REQUIRE_PACKAGES_FCL-IMAGE=1
  1357. REQUIRE_PACKAGES_FCL-NET=1
  1358. REQUIRE_PACKAGES_FCL-PASSRC=1
  1359. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1360. REQUIRE_PACKAGES_FCL-WEB=1
  1361. REQUIRE_PACKAGES_FCL-XML=1
  1362. endif
  1363. ifeq ($(FULL_TARGET),i386-qnx)
  1364. REQUIRE_PACKAGES_RTL=1
  1365. REQUIRE_PACKAGES_PASZLIB=1
  1366. REQUIRE_PACKAGES_FCL-PROCESS=1
  1367. REQUIRE_PACKAGES_HASH=1
  1368. REQUIRE_PACKAGES_LIBTAR=1
  1369. REQUIRE_PACKAGES_FPMKUNIT=1
  1370. REQUIRE_PACKAGES_FCL-BASE=1
  1371. REQUIRE_PACKAGES_FCL-DB=1
  1372. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1373. REQUIRE_PACKAGES_FCL-IMAGE=1
  1374. REQUIRE_PACKAGES_FCL-NET=1
  1375. REQUIRE_PACKAGES_FCL-PASSRC=1
  1376. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1377. REQUIRE_PACKAGES_FCL-WEB=1
  1378. REQUIRE_PACKAGES_FCL-XML=1
  1379. endif
  1380. ifeq ($(FULL_TARGET),i386-netware)
  1381. REQUIRE_PACKAGES_RTL=1
  1382. REQUIRE_PACKAGES_PASZLIB=1
  1383. REQUIRE_PACKAGES_FCL-PROCESS=1
  1384. REQUIRE_PACKAGES_HASH=1
  1385. REQUIRE_PACKAGES_LIBTAR=1
  1386. REQUIRE_PACKAGES_FPMKUNIT=1
  1387. REQUIRE_PACKAGES_FCL-BASE=1
  1388. REQUIRE_PACKAGES_FCL-DB=1
  1389. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1390. REQUIRE_PACKAGES_FCL-IMAGE=1
  1391. REQUIRE_PACKAGES_FCL-NET=1
  1392. REQUIRE_PACKAGES_FCL-PASSRC=1
  1393. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1394. REQUIRE_PACKAGES_FCL-WEB=1
  1395. REQUIRE_PACKAGES_FCL-XML=1
  1396. endif
  1397. ifeq ($(FULL_TARGET),i386-openbsd)
  1398. REQUIRE_PACKAGES_RTL=1
  1399. REQUIRE_PACKAGES_PASZLIB=1
  1400. REQUIRE_PACKAGES_FCL-PROCESS=1
  1401. REQUIRE_PACKAGES_HASH=1
  1402. REQUIRE_PACKAGES_LIBTAR=1
  1403. REQUIRE_PACKAGES_FPMKUNIT=1
  1404. REQUIRE_PACKAGES_FCL-BASE=1
  1405. REQUIRE_PACKAGES_FCL-DB=1
  1406. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1407. REQUIRE_PACKAGES_FCL-IMAGE=1
  1408. REQUIRE_PACKAGES_FCL-NET=1
  1409. REQUIRE_PACKAGES_FCL-PASSRC=1
  1410. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1411. REQUIRE_PACKAGES_FCL-WEB=1
  1412. REQUIRE_PACKAGES_FCL-XML=1
  1413. endif
  1414. ifeq ($(FULL_TARGET),i386-wdosx)
  1415. REQUIRE_PACKAGES_RTL=1
  1416. REQUIRE_PACKAGES_PASZLIB=1
  1417. REQUIRE_PACKAGES_FCL-PROCESS=1
  1418. REQUIRE_PACKAGES_HASH=1
  1419. REQUIRE_PACKAGES_LIBTAR=1
  1420. REQUIRE_PACKAGES_FPMKUNIT=1
  1421. REQUIRE_PACKAGES_FCL-BASE=1
  1422. REQUIRE_PACKAGES_FCL-DB=1
  1423. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1424. REQUIRE_PACKAGES_FCL-IMAGE=1
  1425. REQUIRE_PACKAGES_FCL-NET=1
  1426. REQUIRE_PACKAGES_FCL-PASSRC=1
  1427. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1428. REQUIRE_PACKAGES_FCL-WEB=1
  1429. REQUIRE_PACKAGES_FCL-XML=1
  1430. endif
  1431. ifeq ($(FULL_TARGET),i386-darwin)
  1432. REQUIRE_PACKAGES_RTL=1
  1433. REQUIRE_PACKAGES_PASZLIB=1
  1434. REQUIRE_PACKAGES_FCL-PROCESS=1
  1435. REQUIRE_PACKAGES_HASH=1
  1436. REQUIRE_PACKAGES_LIBTAR=1
  1437. REQUIRE_PACKAGES_FPMKUNIT=1
  1438. REQUIRE_PACKAGES_FCL-BASE=1
  1439. REQUIRE_PACKAGES_FCL-DB=1
  1440. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1441. REQUIRE_PACKAGES_FCL-IMAGE=1
  1442. REQUIRE_PACKAGES_FCL-NET=1
  1443. REQUIRE_PACKAGES_FCL-PASSRC=1
  1444. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1445. REQUIRE_PACKAGES_FCL-WEB=1
  1446. REQUIRE_PACKAGES_FCL-XML=1
  1447. endif
  1448. ifeq ($(FULL_TARGET),i386-emx)
  1449. REQUIRE_PACKAGES_RTL=1
  1450. REQUIRE_PACKAGES_PASZLIB=1
  1451. REQUIRE_PACKAGES_FCL-PROCESS=1
  1452. REQUIRE_PACKAGES_HASH=1
  1453. REQUIRE_PACKAGES_LIBTAR=1
  1454. REQUIRE_PACKAGES_FPMKUNIT=1
  1455. REQUIRE_PACKAGES_FCL-BASE=1
  1456. REQUIRE_PACKAGES_FCL-DB=1
  1457. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1458. REQUIRE_PACKAGES_FCL-IMAGE=1
  1459. REQUIRE_PACKAGES_FCL-NET=1
  1460. REQUIRE_PACKAGES_FCL-PASSRC=1
  1461. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1462. REQUIRE_PACKAGES_FCL-WEB=1
  1463. REQUIRE_PACKAGES_FCL-XML=1
  1464. endif
  1465. ifeq ($(FULL_TARGET),i386-watcom)
  1466. REQUIRE_PACKAGES_RTL=1
  1467. REQUIRE_PACKAGES_PASZLIB=1
  1468. REQUIRE_PACKAGES_FCL-PROCESS=1
  1469. REQUIRE_PACKAGES_HASH=1
  1470. REQUIRE_PACKAGES_LIBTAR=1
  1471. REQUIRE_PACKAGES_FPMKUNIT=1
  1472. REQUIRE_PACKAGES_FCL-BASE=1
  1473. REQUIRE_PACKAGES_FCL-DB=1
  1474. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1475. REQUIRE_PACKAGES_FCL-IMAGE=1
  1476. REQUIRE_PACKAGES_FCL-NET=1
  1477. REQUIRE_PACKAGES_FCL-PASSRC=1
  1478. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1479. REQUIRE_PACKAGES_FCL-WEB=1
  1480. REQUIRE_PACKAGES_FCL-XML=1
  1481. endif
  1482. ifeq ($(FULL_TARGET),i386-netwlibc)
  1483. REQUIRE_PACKAGES_RTL=1
  1484. REQUIRE_PACKAGES_PASZLIB=1
  1485. REQUIRE_PACKAGES_FCL-PROCESS=1
  1486. REQUIRE_PACKAGES_HASH=1
  1487. REQUIRE_PACKAGES_LIBTAR=1
  1488. REQUIRE_PACKAGES_FPMKUNIT=1
  1489. REQUIRE_PACKAGES_FCL-BASE=1
  1490. REQUIRE_PACKAGES_FCL-DB=1
  1491. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1492. REQUIRE_PACKAGES_FCL-IMAGE=1
  1493. REQUIRE_PACKAGES_FCL-NET=1
  1494. REQUIRE_PACKAGES_FCL-PASSRC=1
  1495. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1496. REQUIRE_PACKAGES_FCL-WEB=1
  1497. REQUIRE_PACKAGES_FCL-XML=1
  1498. endif
  1499. ifeq ($(FULL_TARGET),i386-wince)
  1500. REQUIRE_PACKAGES_RTL=1
  1501. REQUIRE_PACKAGES_PASZLIB=1
  1502. REQUIRE_PACKAGES_FCL-PROCESS=1
  1503. REQUIRE_PACKAGES_HASH=1
  1504. REQUIRE_PACKAGES_LIBTAR=1
  1505. REQUIRE_PACKAGES_FPMKUNIT=1
  1506. REQUIRE_PACKAGES_FCL-BASE=1
  1507. REQUIRE_PACKAGES_FCL-DB=1
  1508. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1509. REQUIRE_PACKAGES_FCL-IMAGE=1
  1510. REQUIRE_PACKAGES_FCL-NET=1
  1511. REQUIRE_PACKAGES_FCL-PASSRC=1
  1512. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1513. REQUIRE_PACKAGES_FCL-WEB=1
  1514. REQUIRE_PACKAGES_FCL-XML=1
  1515. endif
  1516. ifeq ($(FULL_TARGET),i386-embedded)
  1517. REQUIRE_PACKAGES_RTL=1
  1518. REQUIRE_PACKAGES_PASZLIB=1
  1519. REQUIRE_PACKAGES_FCL-PROCESS=1
  1520. REQUIRE_PACKAGES_HASH=1
  1521. REQUIRE_PACKAGES_LIBTAR=1
  1522. REQUIRE_PACKAGES_FPMKUNIT=1
  1523. REQUIRE_PACKAGES_FCL-BASE=1
  1524. REQUIRE_PACKAGES_FCL-DB=1
  1525. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1526. REQUIRE_PACKAGES_FCL-IMAGE=1
  1527. REQUIRE_PACKAGES_FCL-NET=1
  1528. REQUIRE_PACKAGES_FCL-PASSRC=1
  1529. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1530. REQUIRE_PACKAGES_FCL-WEB=1
  1531. REQUIRE_PACKAGES_FCL-XML=1
  1532. endif
  1533. ifeq ($(FULL_TARGET),i386-symbian)
  1534. REQUIRE_PACKAGES_RTL=1
  1535. REQUIRE_PACKAGES_PASZLIB=1
  1536. REQUIRE_PACKAGES_FCL-PROCESS=1
  1537. REQUIRE_PACKAGES_HASH=1
  1538. REQUIRE_PACKAGES_LIBTAR=1
  1539. REQUIRE_PACKAGES_FPMKUNIT=1
  1540. REQUIRE_PACKAGES_FCL-BASE=1
  1541. REQUIRE_PACKAGES_FCL-DB=1
  1542. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1543. REQUIRE_PACKAGES_FCL-IMAGE=1
  1544. REQUIRE_PACKAGES_FCL-NET=1
  1545. REQUIRE_PACKAGES_FCL-PASSRC=1
  1546. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1547. REQUIRE_PACKAGES_FCL-WEB=1
  1548. REQUIRE_PACKAGES_FCL-XML=1
  1549. endif
  1550. ifeq ($(FULL_TARGET),i386-nativent)
  1551. REQUIRE_PACKAGES_RTL=1
  1552. REQUIRE_PACKAGES_PASZLIB=1
  1553. REQUIRE_PACKAGES_FCL-PROCESS=1
  1554. REQUIRE_PACKAGES_HASH=1
  1555. REQUIRE_PACKAGES_LIBTAR=1
  1556. REQUIRE_PACKAGES_FPMKUNIT=1
  1557. REQUIRE_PACKAGES_FCL-BASE=1
  1558. REQUIRE_PACKAGES_FCL-DB=1
  1559. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1560. REQUIRE_PACKAGES_FCL-IMAGE=1
  1561. REQUIRE_PACKAGES_FCL-NET=1
  1562. REQUIRE_PACKAGES_FCL-PASSRC=1
  1563. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1564. REQUIRE_PACKAGES_FCL-WEB=1
  1565. REQUIRE_PACKAGES_FCL-XML=1
  1566. endif
  1567. ifeq ($(FULL_TARGET),i386-iphonesim)
  1568. REQUIRE_PACKAGES_RTL=1
  1569. REQUIRE_PACKAGES_PASZLIB=1
  1570. REQUIRE_PACKAGES_FCL-PROCESS=1
  1571. REQUIRE_PACKAGES_HASH=1
  1572. REQUIRE_PACKAGES_LIBTAR=1
  1573. REQUIRE_PACKAGES_FPMKUNIT=1
  1574. REQUIRE_PACKAGES_FCL-BASE=1
  1575. REQUIRE_PACKAGES_FCL-DB=1
  1576. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1577. REQUIRE_PACKAGES_FCL-IMAGE=1
  1578. REQUIRE_PACKAGES_FCL-NET=1
  1579. REQUIRE_PACKAGES_FCL-PASSRC=1
  1580. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1581. REQUIRE_PACKAGES_FCL-WEB=1
  1582. REQUIRE_PACKAGES_FCL-XML=1
  1583. endif
  1584. ifeq ($(FULL_TARGET),i386-android)
  1585. REQUIRE_PACKAGES_RTL=1
  1586. REQUIRE_PACKAGES_PASZLIB=1
  1587. REQUIRE_PACKAGES_FCL-PROCESS=1
  1588. REQUIRE_PACKAGES_HASH=1
  1589. REQUIRE_PACKAGES_LIBTAR=1
  1590. REQUIRE_PACKAGES_FPMKUNIT=1
  1591. REQUIRE_PACKAGES_FCL-BASE=1
  1592. REQUIRE_PACKAGES_FCL-DB=1
  1593. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1594. REQUIRE_PACKAGES_FCL-IMAGE=1
  1595. REQUIRE_PACKAGES_FCL-NET=1
  1596. REQUIRE_PACKAGES_FCL-PASSRC=1
  1597. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1598. REQUIRE_PACKAGES_FCL-WEB=1
  1599. REQUIRE_PACKAGES_FCL-XML=1
  1600. endif
  1601. ifeq ($(FULL_TARGET),i386-aros)
  1602. REQUIRE_PACKAGES_RTL=1
  1603. REQUIRE_PACKAGES_PASZLIB=1
  1604. REQUIRE_PACKAGES_FCL-PROCESS=1
  1605. REQUIRE_PACKAGES_HASH=1
  1606. REQUIRE_PACKAGES_LIBTAR=1
  1607. REQUIRE_PACKAGES_FPMKUNIT=1
  1608. REQUIRE_PACKAGES_FCL-BASE=1
  1609. REQUIRE_PACKAGES_FCL-DB=1
  1610. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1611. REQUIRE_PACKAGES_FCL-IMAGE=1
  1612. REQUIRE_PACKAGES_FCL-NET=1
  1613. REQUIRE_PACKAGES_FCL-PASSRC=1
  1614. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1615. REQUIRE_PACKAGES_FCL-WEB=1
  1616. REQUIRE_PACKAGES_FCL-XML=1
  1617. endif
  1618. ifeq ($(FULL_TARGET),m68k-linux)
  1619. REQUIRE_PACKAGES_RTL=1
  1620. REQUIRE_PACKAGES_PASZLIB=1
  1621. REQUIRE_PACKAGES_FCL-PROCESS=1
  1622. REQUIRE_PACKAGES_HASH=1
  1623. REQUIRE_PACKAGES_LIBTAR=1
  1624. REQUIRE_PACKAGES_FPMKUNIT=1
  1625. REQUIRE_PACKAGES_FCL-BASE=1
  1626. REQUIRE_PACKAGES_FCL-DB=1
  1627. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1628. REQUIRE_PACKAGES_FCL-IMAGE=1
  1629. REQUIRE_PACKAGES_FCL-NET=1
  1630. REQUIRE_PACKAGES_FCL-PASSRC=1
  1631. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1632. REQUIRE_PACKAGES_FCL-WEB=1
  1633. REQUIRE_PACKAGES_FCL-XML=1
  1634. endif
  1635. ifeq ($(FULL_TARGET),m68k-freebsd)
  1636. REQUIRE_PACKAGES_RTL=1
  1637. REQUIRE_PACKAGES_PASZLIB=1
  1638. REQUIRE_PACKAGES_FCL-PROCESS=1
  1639. REQUIRE_PACKAGES_HASH=1
  1640. REQUIRE_PACKAGES_LIBTAR=1
  1641. REQUIRE_PACKAGES_FPMKUNIT=1
  1642. REQUIRE_PACKAGES_FCL-BASE=1
  1643. REQUIRE_PACKAGES_FCL-DB=1
  1644. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1645. REQUIRE_PACKAGES_FCL-IMAGE=1
  1646. REQUIRE_PACKAGES_FCL-NET=1
  1647. REQUIRE_PACKAGES_FCL-PASSRC=1
  1648. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1649. REQUIRE_PACKAGES_FCL-WEB=1
  1650. REQUIRE_PACKAGES_FCL-XML=1
  1651. endif
  1652. ifeq ($(FULL_TARGET),m68k-netbsd)
  1653. REQUIRE_PACKAGES_RTL=1
  1654. REQUIRE_PACKAGES_PASZLIB=1
  1655. REQUIRE_PACKAGES_FCL-PROCESS=1
  1656. REQUIRE_PACKAGES_HASH=1
  1657. REQUIRE_PACKAGES_LIBTAR=1
  1658. REQUIRE_PACKAGES_FPMKUNIT=1
  1659. REQUIRE_PACKAGES_FCL-BASE=1
  1660. REQUIRE_PACKAGES_FCL-DB=1
  1661. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1662. REQUIRE_PACKAGES_FCL-IMAGE=1
  1663. REQUIRE_PACKAGES_FCL-NET=1
  1664. REQUIRE_PACKAGES_FCL-PASSRC=1
  1665. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1666. REQUIRE_PACKAGES_FCL-WEB=1
  1667. REQUIRE_PACKAGES_FCL-XML=1
  1668. endif
  1669. ifeq ($(FULL_TARGET),m68k-amiga)
  1670. REQUIRE_PACKAGES_RTL=1
  1671. REQUIRE_PACKAGES_PASZLIB=1
  1672. REQUIRE_PACKAGES_FCL-PROCESS=1
  1673. REQUIRE_PACKAGES_HASH=1
  1674. REQUIRE_PACKAGES_LIBTAR=1
  1675. REQUIRE_PACKAGES_FPMKUNIT=1
  1676. REQUIRE_PACKAGES_FCL-BASE=1
  1677. REQUIRE_PACKAGES_FCL-DB=1
  1678. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1679. REQUIRE_PACKAGES_FCL-IMAGE=1
  1680. REQUIRE_PACKAGES_FCL-NET=1
  1681. REQUIRE_PACKAGES_FCL-PASSRC=1
  1682. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1683. REQUIRE_PACKAGES_FCL-WEB=1
  1684. REQUIRE_PACKAGES_FCL-XML=1
  1685. endif
  1686. ifeq ($(FULL_TARGET),m68k-atari)
  1687. REQUIRE_PACKAGES_RTL=1
  1688. REQUIRE_PACKAGES_PASZLIB=1
  1689. REQUIRE_PACKAGES_FCL-PROCESS=1
  1690. REQUIRE_PACKAGES_HASH=1
  1691. REQUIRE_PACKAGES_LIBTAR=1
  1692. REQUIRE_PACKAGES_FPMKUNIT=1
  1693. REQUIRE_PACKAGES_FCL-BASE=1
  1694. REQUIRE_PACKAGES_FCL-DB=1
  1695. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1696. REQUIRE_PACKAGES_FCL-IMAGE=1
  1697. REQUIRE_PACKAGES_FCL-NET=1
  1698. REQUIRE_PACKAGES_FCL-PASSRC=1
  1699. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1700. REQUIRE_PACKAGES_FCL-WEB=1
  1701. REQUIRE_PACKAGES_FCL-XML=1
  1702. endif
  1703. ifeq ($(FULL_TARGET),m68k-openbsd)
  1704. REQUIRE_PACKAGES_RTL=1
  1705. REQUIRE_PACKAGES_PASZLIB=1
  1706. REQUIRE_PACKAGES_FCL-PROCESS=1
  1707. REQUIRE_PACKAGES_HASH=1
  1708. REQUIRE_PACKAGES_LIBTAR=1
  1709. REQUIRE_PACKAGES_FPMKUNIT=1
  1710. REQUIRE_PACKAGES_FCL-BASE=1
  1711. REQUIRE_PACKAGES_FCL-DB=1
  1712. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1713. REQUIRE_PACKAGES_FCL-IMAGE=1
  1714. REQUIRE_PACKAGES_FCL-NET=1
  1715. REQUIRE_PACKAGES_FCL-PASSRC=1
  1716. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1717. REQUIRE_PACKAGES_FCL-WEB=1
  1718. REQUIRE_PACKAGES_FCL-XML=1
  1719. endif
  1720. ifeq ($(FULL_TARGET),m68k-palmos)
  1721. REQUIRE_PACKAGES_RTL=1
  1722. REQUIRE_PACKAGES_PASZLIB=1
  1723. REQUIRE_PACKAGES_FCL-PROCESS=1
  1724. REQUIRE_PACKAGES_HASH=1
  1725. REQUIRE_PACKAGES_LIBTAR=1
  1726. REQUIRE_PACKAGES_FPMKUNIT=1
  1727. REQUIRE_PACKAGES_FCL-BASE=1
  1728. REQUIRE_PACKAGES_FCL-DB=1
  1729. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1730. REQUIRE_PACKAGES_FCL-IMAGE=1
  1731. REQUIRE_PACKAGES_FCL-NET=1
  1732. REQUIRE_PACKAGES_FCL-PASSRC=1
  1733. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1734. REQUIRE_PACKAGES_FCL-WEB=1
  1735. REQUIRE_PACKAGES_FCL-XML=1
  1736. endif
  1737. ifeq ($(FULL_TARGET),m68k-embedded)
  1738. REQUIRE_PACKAGES_RTL=1
  1739. REQUIRE_PACKAGES_PASZLIB=1
  1740. REQUIRE_PACKAGES_FCL-PROCESS=1
  1741. REQUIRE_PACKAGES_HASH=1
  1742. REQUIRE_PACKAGES_LIBTAR=1
  1743. REQUIRE_PACKAGES_FPMKUNIT=1
  1744. REQUIRE_PACKAGES_FCL-BASE=1
  1745. REQUIRE_PACKAGES_FCL-DB=1
  1746. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1747. REQUIRE_PACKAGES_FCL-IMAGE=1
  1748. REQUIRE_PACKAGES_FCL-NET=1
  1749. REQUIRE_PACKAGES_FCL-PASSRC=1
  1750. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1751. REQUIRE_PACKAGES_FCL-WEB=1
  1752. REQUIRE_PACKAGES_FCL-XML=1
  1753. endif
  1754. ifeq ($(FULL_TARGET),powerpc-linux)
  1755. REQUIRE_PACKAGES_RTL=1
  1756. REQUIRE_PACKAGES_PASZLIB=1
  1757. REQUIRE_PACKAGES_FCL-PROCESS=1
  1758. REQUIRE_PACKAGES_HASH=1
  1759. REQUIRE_PACKAGES_LIBTAR=1
  1760. REQUIRE_PACKAGES_FPMKUNIT=1
  1761. REQUIRE_PACKAGES_FCL-BASE=1
  1762. REQUIRE_PACKAGES_FCL-DB=1
  1763. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1764. REQUIRE_PACKAGES_FCL-IMAGE=1
  1765. REQUIRE_PACKAGES_FCL-NET=1
  1766. REQUIRE_PACKAGES_FCL-PASSRC=1
  1767. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1768. REQUIRE_PACKAGES_FCL-WEB=1
  1769. REQUIRE_PACKAGES_FCL-XML=1
  1770. endif
  1771. ifeq ($(FULL_TARGET),powerpc-netbsd)
  1772. REQUIRE_PACKAGES_RTL=1
  1773. REQUIRE_PACKAGES_PASZLIB=1
  1774. REQUIRE_PACKAGES_FCL-PROCESS=1
  1775. REQUIRE_PACKAGES_HASH=1
  1776. REQUIRE_PACKAGES_LIBTAR=1
  1777. REQUIRE_PACKAGES_FPMKUNIT=1
  1778. REQUIRE_PACKAGES_FCL-BASE=1
  1779. REQUIRE_PACKAGES_FCL-DB=1
  1780. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1781. REQUIRE_PACKAGES_FCL-IMAGE=1
  1782. REQUIRE_PACKAGES_FCL-NET=1
  1783. REQUIRE_PACKAGES_FCL-PASSRC=1
  1784. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1785. REQUIRE_PACKAGES_FCL-WEB=1
  1786. REQUIRE_PACKAGES_FCL-XML=1
  1787. endif
  1788. ifeq ($(FULL_TARGET),powerpc-amiga)
  1789. REQUIRE_PACKAGES_RTL=1
  1790. REQUIRE_PACKAGES_PASZLIB=1
  1791. REQUIRE_PACKAGES_FCL-PROCESS=1
  1792. REQUIRE_PACKAGES_HASH=1
  1793. REQUIRE_PACKAGES_LIBTAR=1
  1794. REQUIRE_PACKAGES_FPMKUNIT=1
  1795. REQUIRE_PACKAGES_FCL-BASE=1
  1796. REQUIRE_PACKAGES_FCL-DB=1
  1797. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1798. REQUIRE_PACKAGES_FCL-IMAGE=1
  1799. REQUIRE_PACKAGES_FCL-NET=1
  1800. REQUIRE_PACKAGES_FCL-PASSRC=1
  1801. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1802. REQUIRE_PACKAGES_FCL-WEB=1
  1803. REQUIRE_PACKAGES_FCL-XML=1
  1804. endif
  1805. ifeq ($(FULL_TARGET),powerpc-macos)
  1806. REQUIRE_PACKAGES_RTL=1
  1807. REQUIRE_PACKAGES_PASZLIB=1
  1808. REQUIRE_PACKAGES_FCL-PROCESS=1
  1809. REQUIRE_PACKAGES_HASH=1
  1810. REQUIRE_PACKAGES_LIBTAR=1
  1811. REQUIRE_PACKAGES_FPMKUNIT=1
  1812. REQUIRE_PACKAGES_FCL-BASE=1
  1813. REQUIRE_PACKAGES_FCL-DB=1
  1814. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1815. REQUIRE_PACKAGES_FCL-IMAGE=1
  1816. REQUIRE_PACKAGES_FCL-NET=1
  1817. REQUIRE_PACKAGES_FCL-PASSRC=1
  1818. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1819. REQUIRE_PACKAGES_FCL-WEB=1
  1820. REQUIRE_PACKAGES_FCL-XML=1
  1821. endif
  1822. ifeq ($(FULL_TARGET),powerpc-darwin)
  1823. REQUIRE_PACKAGES_RTL=1
  1824. REQUIRE_PACKAGES_PASZLIB=1
  1825. REQUIRE_PACKAGES_FCL-PROCESS=1
  1826. REQUIRE_PACKAGES_HASH=1
  1827. REQUIRE_PACKAGES_LIBTAR=1
  1828. REQUIRE_PACKAGES_FPMKUNIT=1
  1829. REQUIRE_PACKAGES_FCL-BASE=1
  1830. REQUIRE_PACKAGES_FCL-DB=1
  1831. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1832. REQUIRE_PACKAGES_FCL-IMAGE=1
  1833. REQUIRE_PACKAGES_FCL-NET=1
  1834. REQUIRE_PACKAGES_FCL-PASSRC=1
  1835. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1836. REQUIRE_PACKAGES_FCL-WEB=1
  1837. REQUIRE_PACKAGES_FCL-XML=1
  1838. endif
  1839. ifeq ($(FULL_TARGET),powerpc-morphos)
  1840. REQUIRE_PACKAGES_RTL=1
  1841. REQUIRE_PACKAGES_PASZLIB=1
  1842. REQUIRE_PACKAGES_FCL-PROCESS=1
  1843. REQUIRE_PACKAGES_HASH=1
  1844. REQUIRE_PACKAGES_LIBTAR=1
  1845. REQUIRE_PACKAGES_FPMKUNIT=1
  1846. REQUIRE_PACKAGES_FCL-BASE=1
  1847. REQUIRE_PACKAGES_FCL-DB=1
  1848. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1849. REQUIRE_PACKAGES_FCL-IMAGE=1
  1850. REQUIRE_PACKAGES_FCL-NET=1
  1851. REQUIRE_PACKAGES_FCL-PASSRC=1
  1852. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1853. REQUIRE_PACKAGES_FCL-WEB=1
  1854. REQUIRE_PACKAGES_FCL-XML=1
  1855. endif
  1856. ifeq ($(FULL_TARGET),powerpc-embedded)
  1857. REQUIRE_PACKAGES_RTL=1
  1858. REQUIRE_PACKAGES_PASZLIB=1
  1859. REQUIRE_PACKAGES_FCL-PROCESS=1
  1860. REQUIRE_PACKAGES_HASH=1
  1861. REQUIRE_PACKAGES_LIBTAR=1
  1862. REQUIRE_PACKAGES_FPMKUNIT=1
  1863. REQUIRE_PACKAGES_FCL-BASE=1
  1864. REQUIRE_PACKAGES_FCL-DB=1
  1865. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1866. REQUIRE_PACKAGES_FCL-IMAGE=1
  1867. REQUIRE_PACKAGES_FCL-NET=1
  1868. REQUIRE_PACKAGES_FCL-PASSRC=1
  1869. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1870. REQUIRE_PACKAGES_FCL-WEB=1
  1871. REQUIRE_PACKAGES_FCL-XML=1
  1872. endif
  1873. ifeq ($(FULL_TARGET),powerpc-wii)
  1874. REQUIRE_PACKAGES_RTL=1
  1875. REQUIRE_PACKAGES_PASZLIB=1
  1876. REQUIRE_PACKAGES_FCL-PROCESS=1
  1877. REQUIRE_PACKAGES_HASH=1
  1878. REQUIRE_PACKAGES_LIBTAR=1
  1879. REQUIRE_PACKAGES_FPMKUNIT=1
  1880. REQUIRE_PACKAGES_FCL-BASE=1
  1881. REQUIRE_PACKAGES_FCL-DB=1
  1882. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1883. REQUIRE_PACKAGES_FCL-IMAGE=1
  1884. REQUIRE_PACKAGES_FCL-NET=1
  1885. REQUIRE_PACKAGES_FCL-PASSRC=1
  1886. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1887. REQUIRE_PACKAGES_FCL-WEB=1
  1888. REQUIRE_PACKAGES_FCL-XML=1
  1889. endif
  1890. ifeq ($(FULL_TARGET),powerpc-aix)
  1891. REQUIRE_PACKAGES_RTL=1
  1892. REQUIRE_PACKAGES_PASZLIB=1
  1893. REQUIRE_PACKAGES_FCL-PROCESS=1
  1894. REQUIRE_PACKAGES_HASH=1
  1895. REQUIRE_PACKAGES_LIBTAR=1
  1896. REQUIRE_PACKAGES_FPMKUNIT=1
  1897. REQUIRE_PACKAGES_FCL-BASE=1
  1898. REQUIRE_PACKAGES_FCL-DB=1
  1899. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1900. REQUIRE_PACKAGES_FCL-IMAGE=1
  1901. REQUIRE_PACKAGES_FCL-NET=1
  1902. REQUIRE_PACKAGES_FCL-PASSRC=1
  1903. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1904. REQUIRE_PACKAGES_FCL-WEB=1
  1905. REQUIRE_PACKAGES_FCL-XML=1
  1906. endif
  1907. ifeq ($(FULL_TARGET),sparc-linux)
  1908. REQUIRE_PACKAGES_RTL=1
  1909. REQUIRE_PACKAGES_PASZLIB=1
  1910. REQUIRE_PACKAGES_FCL-PROCESS=1
  1911. REQUIRE_PACKAGES_HASH=1
  1912. REQUIRE_PACKAGES_LIBTAR=1
  1913. REQUIRE_PACKAGES_FPMKUNIT=1
  1914. REQUIRE_PACKAGES_FCL-BASE=1
  1915. REQUIRE_PACKAGES_FCL-DB=1
  1916. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1917. REQUIRE_PACKAGES_FCL-IMAGE=1
  1918. REQUIRE_PACKAGES_FCL-NET=1
  1919. REQUIRE_PACKAGES_FCL-PASSRC=1
  1920. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1921. REQUIRE_PACKAGES_FCL-WEB=1
  1922. REQUIRE_PACKAGES_FCL-XML=1
  1923. endif
  1924. ifeq ($(FULL_TARGET),sparc-netbsd)
  1925. REQUIRE_PACKAGES_RTL=1
  1926. REQUIRE_PACKAGES_PASZLIB=1
  1927. REQUIRE_PACKAGES_FCL-PROCESS=1
  1928. REQUIRE_PACKAGES_HASH=1
  1929. REQUIRE_PACKAGES_LIBTAR=1
  1930. REQUIRE_PACKAGES_FPMKUNIT=1
  1931. REQUIRE_PACKAGES_FCL-BASE=1
  1932. REQUIRE_PACKAGES_FCL-DB=1
  1933. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1934. REQUIRE_PACKAGES_FCL-IMAGE=1
  1935. REQUIRE_PACKAGES_FCL-NET=1
  1936. REQUIRE_PACKAGES_FCL-PASSRC=1
  1937. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1938. REQUIRE_PACKAGES_FCL-WEB=1
  1939. REQUIRE_PACKAGES_FCL-XML=1
  1940. endif
  1941. ifeq ($(FULL_TARGET),sparc-solaris)
  1942. REQUIRE_PACKAGES_RTL=1
  1943. REQUIRE_PACKAGES_PASZLIB=1
  1944. REQUIRE_PACKAGES_FCL-PROCESS=1
  1945. REQUIRE_PACKAGES_HASH=1
  1946. REQUIRE_PACKAGES_LIBTAR=1
  1947. REQUIRE_PACKAGES_FPMKUNIT=1
  1948. REQUIRE_PACKAGES_FCL-BASE=1
  1949. REQUIRE_PACKAGES_FCL-DB=1
  1950. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1951. REQUIRE_PACKAGES_FCL-IMAGE=1
  1952. REQUIRE_PACKAGES_FCL-NET=1
  1953. REQUIRE_PACKAGES_FCL-PASSRC=1
  1954. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1955. REQUIRE_PACKAGES_FCL-WEB=1
  1956. REQUIRE_PACKAGES_FCL-XML=1
  1957. endif
  1958. ifeq ($(FULL_TARGET),sparc-embedded)
  1959. REQUIRE_PACKAGES_RTL=1
  1960. REQUIRE_PACKAGES_PASZLIB=1
  1961. REQUIRE_PACKAGES_FCL-PROCESS=1
  1962. REQUIRE_PACKAGES_HASH=1
  1963. REQUIRE_PACKAGES_LIBTAR=1
  1964. REQUIRE_PACKAGES_FPMKUNIT=1
  1965. REQUIRE_PACKAGES_FCL-BASE=1
  1966. REQUIRE_PACKAGES_FCL-DB=1
  1967. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1968. REQUIRE_PACKAGES_FCL-IMAGE=1
  1969. REQUIRE_PACKAGES_FCL-NET=1
  1970. REQUIRE_PACKAGES_FCL-PASSRC=1
  1971. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1972. REQUIRE_PACKAGES_FCL-WEB=1
  1973. REQUIRE_PACKAGES_FCL-XML=1
  1974. endif
  1975. ifeq ($(FULL_TARGET),x86_64-linux)
  1976. REQUIRE_PACKAGES_RTL=1
  1977. REQUIRE_PACKAGES_PASZLIB=1
  1978. REQUIRE_PACKAGES_FCL-PROCESS=1
  1979. REQUIRE_PACKAGES_HASH=1
  1980. REQUIRE_PACKAGES_LIBTAR=1
  1981. REQUIRE_PACKAGES_FPMKUNIT=1
  1982. REQUIRE_PACKAGES_FCL-BASE=1
  1983. REQUIRE_PACKAGES_FCL-DB=1
  1984. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  1985. REQUIRE_PACKAGES_FCL-IMAGE=1
  1986. REQUIRE_PACKAGES_FCL-NET=1
  1987. REQUIRE_PACKAGES_FCL-PASSRC=1
  1988. REQUIRE_PACKAGES_FCL-REGISTRY=1
  1989. REQUIRE_PACKAGES_FCL-WEB=1
  1990. REQUIRE_PACKAGES_FCL-XML=1
  1991. endif
  1992. ifeq ($(FULL_TARGET),x86_64-freebsd)
  1993. REQUIRE_PACKAGES_RTL=1
  1994. REQUIRE_PACKAGES_PASZLIB=1
  1995. REQUIRE_PACKAGES_FCL-PROCESS=1
  1996. REQUIRE_PACKAGES_HASH=1
  1997. REQUIRE_PACKAGES_LIBTAR=1
  1998. REQUIRE_PACKAGES_FPMKUNIT=1
  1999. REQUIRE_PACKAGES_FCL-BASE=1
  2000. REQUIRE_PACKAGES_FCL-DB=1
  2001. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  2002. REQUIRE_PACKAGES_FCL-IMAGE=1
  2003. REQUIRE_PACKAGES_FCL-NET=1
  2004. REQUIRE_PACKAGES_FCL-PASSRC=1
  2005. REQUIRE_PACKAGES_FCL-REGISTRY=1
  2006. REQUIRE_PACKAGES_FCL-WEB=1
  2007. REQUIRE_PACKAGES_FCL-XML=1
  2008. endif
  2009. ifeq ($(FULL_TARGET),x86_64-netbsd)
  2010. REQUIRE_PACKAGES_RTL=1
  2011. REQUIRE_PACKAGES_PASZLIB=1
  2012. REQUIRE_PACKAGES_FCL-PROCESS=1
  2013. REQUIRE_PACKAGES_HASH=1
  2014. REQUIRE_PACKAGES_LIBTAR=1
  2015. REQUIRE_PACKAGES_FPMKUNIT=1
  2016. REQUIRE_PACKAGES_FCL-BASE=1
  2017. REQUIRE_PACKAGES_FCL-DB=1
  2018. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  2019. REQUIRE_PACKAGES_FCL-IMAGE=1
  2020. REQUIRE_PACKAGES_FCL-NET=1
  2021. REQUIRE_PACKAGES_FCL-PASSRC=1
  2022. REQUIRE_PACKAGES_FCL-REGISTRY=1
  2023. REQUIRE_PACKAGES_FCL-WEB=1
  2024. REQUIRE_PACKAGES_FCL-XML=1
  2025. endif
  2026. ifeq ($(FULL_TARGET),x86_64-solaris)
  2027. REQUIRE_PACKAGES_RTL=1
  2028. REQUIRE_PACKAGES_PASZLIB=1
  2029. REQUIRE_PACKAGES_FCL-PROCESS=1
  2030. REQUIRE_PACKAGES_HASH=1
  2031. REQUIRE_PACKAGES_LIBTAR=1
  2032. REQUIRE_PACKAGES_FPMKUNIT=1
  2033. REQUIRE_PACKAGES_FCL-BASE=1
  2034. REQUIRE_PACKAGES_FCL-DB=1
  2035. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  2036. REQUIRE_PACKAGES_FCL-IMAGE=1
  2037. REQUIRE_PACKAGES_FCL-NET=1
  2038. REQUIRE_PACKAGES_FCL-PASSRC=1
  2039. REQUIRE_PACKAGES_FCL-REGISTRY=1
  2040. REQUIRE_PACKAGES_FCL-WEB=1
  2041. REQUIRE_PACKAGES_FCL-XML=1
  2042. endif
  2043. ifeq ($(FULL_TARGET),x86_64-openbsd)
  2044. REQUIRE_PACKAGES_RTL=1
  2045. REQUIRE_PACKAGES_PASZLIB=1
  2046. REQUIRE_PACKAGES_FCL-PROCESS=1
  2047. REQUIRE_PACKAGES_HASH=1
  2048. REQUIRE_PACKAGES_LIBTAR=1
  2049. REQUIRE_PACKAGES_FPMKUNIT=1
  2050. REQUIRE_PACKAGES_FCL-BASE=1
  2051. REQUIRE_PACKAGES_FCL-DB=1
  2052. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  2053. REQUIRE_PACKAGES_FCL-IMAGE=1
  2054. REQUIRE_PACKAGES_FCL-NET=1
  2055. REQUIRE_PACKAGES_FCL-PASSRC=1
  2056. REQUIRE_PACKAGES_FCL-REGISTRY=1
  2057. REQUIRE_PACKAGES_FCL-WEB=1
  2058. REQUIRE_PACKAGES_FCL-XML=1
  2059. endif
  2060. ifeq ($(FULL_TARGET),x86_64-darwin)
  2061. REQUIRE_PACKAGES_RTL=1
  2062. REQUIRE_PACKAGES_PASZLIB=1
  2063. REQUIRE_PACKAGES_FCL-PROCESS=1
  2064. REQUIRE_PACKAGES_HASH=1
  2065. REQUIRE_PACKAGES_LIBTAR=1
  2066. REQUIRE_PACKAGES_FPMKUNIT=1
  2067. REQUIRE_PACKAGES_FCL-BASE=1
  2068. REQUIRE_PACKAGES_FCL-DB=1
  2069. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  2070. REQUIRE_PACKAGES_FCL-IMAGE=1
  2071. REQUIRE_PACKAGES_FCL-NET=1
  2072. REQUIRE_PACKAGES_FCL-PASSRC=1
  2073. REQUIRE_PACKAGES_FCL-REGISTRY=1
  2074. REQUIRE_PACKAGES_FCL-WEB=1
  2075. REQUIRE_PACKAGES_FCL-XML=1
  2076. endif
  2077. ifeq ($(FULL_TARGET),x86_64-win64)
  2078. REQUIRE_PACKAGES_RTL=1
  2079. REQUIRE_PACKAGES_PASZLIB=1
  2080. REQUIRE_PACKAGES_FCL-PROCESS=1
  2081. REQUIRE_PACKAGES_HASH=1
  2082. REQUIRE_PACKAGES_LIBTAR=1
  2083. REQUIRE_PACKAGES_FPMKUNIT=1
  2084. REQUIRE_PACKAGES_FCL-BASE=1
  2085. REQUIRE_PACKAGES_FCL-DB=1
  2086. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  2087. REQUIRE_PACKAGES_FCL-IMAGE=1
  2088. REQUIRE_PACKAGES_FCL-NET=1
  2089. REQUIRE_PACKAGES_FCL-PASSRC=1
  2090. REQUIRE_PACKAGES_FCL-REGISTRY=1
  2091. REQUIRE_PACKAGES_FCL-WEB=1
  2092. REQUIRE_PACKAGES_FCL-XML=1
  2093. endif
  2094. ifeq ($(FULL_TARGET),x86_64-embedded)
  2095. REQUIRE_PACKAGES_RTL=1
  2096. REQUIRE_PACKAGES_PASZLIB=1
  2097. REQUIRE_PACKAGES_FCL-PROCESS=1
  2098. REQUIRE_PACKAGES_HASH=1
  2099. REQUIRE_PACKAGES_LIBTAR=1
  2100. REQUIRE_PACKAGES_FPMKUNIT=1
  2101. REQUIRE_PACKAGES_FCL-BASE=1
  2102. REQUIRE_PACKAGES_FCL-DB=1
  2103. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  2104. REQUIRE_PACKAGES_FCL-IMAGE=1
  2105. REQUIRE_PACKAGES_FCL-NET=1
  2106. REQUIRE_PACKAGES_FCL-PASSRC=1
  2107. REQUIRE_PACKAGES_FCL-REGISTRY=1
  2108. REQUIRE_PACKAGES_FCL-WEB=1
  2109. REQUIRE_PACKAGES_FCL-XML=1
  2110. endif
  2111. ifeq ($(FULL_TARGET),x86_64-dragonfly)
  2112. REQUIRE_PACKAGES_RTL=1
  2113. REQUIRE_PACKAGES_PASZLIB=1
  2114. REQUIRE_PACKAGES_FCL-PROCESS=1
  2115. REQUIRE_PACKAGES_HASH=1
  2116. REQUIRE_PACKAGES_LIBTAR=1
  2117. REQUIRE_PACKAGES_FPMKUNIT=1
  2118. REQUIRE_PACKAGES_FCL-BASE=1
  2119. REQUIRE_PACKAGES_FCL-DB=1
  2120. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  2121. REQUIRE_PACKAGES_FCL-IMAGE=1
  2122. REQUIRE_PACKAGES_FCL-NET=1
  2123. REQUIRE_PACKAGES_FCL-PASSRC=1
  2124. REQUIRE_PACKAGES_FCL-REGISTRY=1
  2125. REQUIRE_PACKAGES_FCL-WEB=1
  2126. REQUIRE_PACKAGES_FCL-XML=1
  2127. endif
  2128. ifeq ($(FULL_TARGET),arm-linux)
  2129. REQUIRE_PACKAGES_RTL=1
  2130. REQUIRE_PACKAGES_PASZLIB=1
  2131. REQUIRE_PACKAGES_FCL-PROCESS=1
  2132. REQUIRE_PACKAGES_HASH=1
  2133. REQUIRE_PACKAGES_LIBTAR=1
  2134. REQUIRE_PACKAGES_FPMKUNIT=1
  2135. REQUIRE_PACKAGES_FCL-BASE=1
  2136. REQUIRE_PACKAGES_FCL-DB=1
  2137. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  2138. REQUIRE_PACKAGES_FCL-IMAGE=1
  2139. REQUIRE_PACKAGES_FCL-NET=1
  2140. REQUIRE_PACKAGES_FCL-PASSRC=1
  2141. REQUIRE_PACKAGES_FCL-REGISTRY=1
  2142. REQUIRE_PACKAGES_FCL-WEB=1
  2143. REQUIRE_PACKAGES_FCL-XML=1
  2144. endif
  2145. ifeq ($(FULL_TARGET),arm-palmos)
  2146. REQUIRE_PACKAGES_RTL=1
  2147. REQUIRE_PACKAGES_PASZLIB=1
  2148. REQUIRE_PACKAGES_FCL-PROCESS=1
  2149. REQUIRE_PACKAGES_HASH=1
  2150. REQUIRE_PACKAGES_LIBTAR=1
  2151. REQUIRE_PACKAGES_FPMKUNIT=1
  2152. REQUIRE_PACKAGES_FCL-BASE=1
  2153. REQUIRE_PACKAGES_FCL-DB=1
  2154. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  2155. REQUIRE_PACKAGES_FCL-IMAGE=1
  2156. REQUIRE_PACKAGES_FCL-NET=1
  2157. REQUIRE_PACKAGES_FCL-PASSRC=1
  2158. REQUIRE_PACKAGES_FCL-REGISTRY=1
  2159. REQUIRE_PACKAGES_FCL-WEB=1
  2160. REQUIRE_PACKAGES_FCL-XML=1
  2161. endif
  2162. ifeq ($(FULL_TARGET),arm-darwin)
  2163. REQUIRE_PACKAGES_RTL=1
  2164. REQUIRE_PACKAGES_PASZLIB=1
  2165. REQUIRE_PACKAGES_FCL-PROCESS=1
  2166. REQUIRE_PACKAGES_HASH=1
  2167. REQUIRE_PACKAGES_LIBTAR=1
  2168. REQUIRE_PACKAGES_FPMKUNIT=1
  2169. REQUIRE_PACKAGES_FCL-BASE=1
  2170. REQUIRE_PACKAGES_FCL-DB=1
  2171. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  2172. REQUIRE_PACKAGES_FCL-IMAGE=1
  2173. REQUIRE_PACKAGES_FCL-NET=1
  2174. REQUIRE_PACKAGES_FCL-PASSRC=1
  2175. REQUIRE_PACKAGES_FCL-REGISTRY=1
  2176. REQUIRE_PACKAGES_FCL-WEB=1
  2177. REQUIRE_PACKAGES_FCL-XML=1
  2178. endif
  2179. ifeq ($(FULL_TARGET),arm-wince)
  2180. REQUIRE_PACKAGES_RTL=1
  2181. REQUIRE_PACKAGES_PASZLIB=1
  2182. REQUIRE_PACKAGES_FCL-PROCESS=1
  2183. REQUIRE_PACKAGES_HASH=1
  2184. REQUIRE_PACKAGES_LIBTAR=1
  2185. REQUIRE_PACKAGES_FPMKUNIT=1
  2186. REQUIRE_PACKAGES_FCL-BASE=1
  2187. REQUIRE_PACKAGES_FCL-DB=1
  2188. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  2189. REQUIRE_PACKAGES_FCL-IMAGE=1
  2190. REQUIRE_PACKAGES_FCL-NET=1
  2191. REQUIRE_PACKAGES_FCL-PASSRC=1
  2192. REQUIRE_PACKAGES_FCL-REGISTRY=1
  2193. REQUIRE_PACKAGES_FCL-WEB=1
  2194. REQUIRE_PACKAGES_FCL-XML=1
  2195. endif
  2196. ifeq ($(FULL_TARGET),arm-gba)
  2197. REQUIRE_PACKAGES_RTL=1
  2198. REQUIRE_PACKAGES_PASZLIB=1
  2199. REQUIRE_PACKAGES_FCL-PROCESS=1
  2200. REQUIRE_PACKAGES_HASH=1
  2201. REQUIRE_PACKAGES_LIBTAR=1
  2202. REQUIRE_PACKAGES_FPMKUNIT=1
  2203. REQUIRE_PACKAGES_FCL-BASE=1
  2204. REQUIRE_PACKAGES_FCL-DB=1
  2205. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  2206. REQUIRE_PACKAGES_FCL-IMAGE=1
  2207. REQUIRE_PACKAGES_FCL-NET=1
  2208. REQUIRE_PACKAGES_FCL-PASSRC=1
  2209. REQUIRE_PACKAGES_FCL-REGISTRY=1
  2210. REQUIRE_PACKAGES_FCL-WEB=1
  2211. REQUIRE_PACKAGES_FCL-XML=1
  2212. endif
  2213. ifeq ($(FULL_TARGET),arm-nds)
  2214. REQUIRE_PACKAGES_RTL=1
  2215. REQUIRE_PACKAGES_PASZLIB=1
  2216. REQUIRE_PACKAGES_FCL-PROCESS=1
  2217. REQUIRE_PACKAGES_HASH=1
  2218. REQUIRE_PACKAGES_LIBTAR=1
  2219. REQUIRE_PACKAGES_FPMKUNIT=1
  2220. REQUIRE_PACKAGES_FCL-BASE=1
  2221. REQUIRE_PACKAGES_FCL-DB=1
  2222. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  2223. REQUIRE_PACKAGES_FCL-IMAGE=1
  2224. REQUIRE_PACKAGES_FCL-NET=1
  2225. REQUIRE_PACKAGES_FCL-PASSRC=1
  2226. REQUIRE_PACKAGES_FCL-REGISTRY=1
  2227. REQUIRE_PACKAGES_FCL-WEB=1
  2228. REQUIRE_PACKAGES_FCL-XML=1
  2229. endif
  2230. ifeq ($(FULL_TARGET),arm-embedded)
  2231. REQUIRE_PACKAGES_RTL=1
  2232. REQUIRE_PACKAGES_PASZLIB=1
  2233. REQUIRE_PACKAGES_FCL-PROCESS=1
  2234. REQUIRE_PACKAGES_HASH=1
  2235. REQUIRE_PACKAGES_LIBTAR=1
  2236. REQUIRE_PACKAGES_FPMKUNIT=1
  2237. REQUIRE_PACKAGES_FCL-BASE=1
  2238. REQUIRE_PACKAGES_FCL-DB=1
  2239. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  2240. REQUIRE_PACKAGES_FCL-IMAGE=1
  2241. REQUIRE_PACKAGES_FCL-NET=1
  2242. REQUIRE_PACKAGES_FCL-PASSRC=1
  2243. REQUIRE_PACKAGES_FCL-REGISTRY=1
  2244. REQUIRE_PACKAGES_FCL-WEB=1
  2245. REQUIRE_PACKAGES_FCL-XML=1
  2246. endif
  2247. ifeq ($(FULL_TARGET),arm-symbian)
  2248. REQUIRE_PACKAGES_RTL=1
  2249. REQUIRE_PACKAGES_PASZLIB=1
  2250. REQUIRE_PACKAGES_FCL-PROCESS=1
  2251. REQUIRE_PACKAGES_HASH=1
  2252. REQUIRE_PACKAGES_LIBTAR=1
  2253. REQUIRE_PACKAGES_FPMKUNIT=1
  2254. REQUIRE_PACKAGES_FCL-BASE=1
  2255. REQUIRE_PACKAGES_FCL-DB=1
  2256. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  2257. REQUIRE_PACKAGES_FCL-IMAGE=1
  2258. REQUIRE_PACKAGES_FCL-NET=1
  2259. REQUIRE_PACKAGES_FCL-PASSRC=1
  2260. REQUIRE_PACKAGES_FCL-REGISTRY=1
  2261. REQUIRE_PACKAGES_FCL-WEB=1
  2262. REQUIRE_PACKAGES_FCL-XML=1
  2263. endif
  2264. ifeq ($(FULL_TARGET),arm-android)
  2265. REQUIRE_PACKAGES_RTL=1
  2266. REQUIRE_PACKAGES_PASZLIB=1
  2267. REQUIRE_PACKAGES_FCL-PROCESS=1
  2268. REQUIRE_PACKAGES_HASH=1
  2269. REQUIRE_PACKAGES_LIBTAR=1
  2270. REQUIRE_PACKAGES_FPMKUNIT=1
  2271. REQUIRE_PACKAGES_FCL-BASE=1
  2272. REQUIRE_PACKAGES_FCL-DB=1
  2273. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  2274. REQUIRE_PACKAGES_FCL-IMAGE=1
  2275. REQUIRE_PACKAGES_FCL-NET=1
  2276. REQUIRE_PACKAGES_FCL-PASSRC=1
  2277. REQUIRE_PACKAGES_FCL-REGISTRY=1
  2278. REQUIRE_PACKAGES_FCL-WEB=1
  2279. REQUIRE_PACKAGES_FCL-XML=1
  2280. endif
  2281. ifeq ($(FULL_TARGET),powerpc64-linux)
  2282. REQUIRE_PACKAGES_RTL=1
  2283. REQUIRE_PACKAGES_PASZLIB=1
  2284. REQUIRE_PACKAGES_FCL-PROCESS=1
  2285. REQUIRE_PACKAGES_HASH=1
  2286. REQUIRE_PACKAGES_LIBTAR=1
  2287. REQUIRE_PACKAGES_FPMKUNIT=1
  2288. REQUIRE_PACKAGES_FCL-BASE=1
  2289. REQUIRE_PACKAGES_FCL-DB=1
  2290. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  2291. REQUIRE_PACKAGES_FCL-IMAGE=1
  2292. REQUIRE_PACKAGES_FCL-NET=1
  2293. REQUIRE_PACKAGES_FCL-PASSRC=1
  2294. REQUIRE_PACKAGES_FCL-REGISTRY=1
  2295. REQUIRE_PACKAGES_FCL-WEB=1
  2296. REQUIRE_PACKAGES_FCL-XML=1
  2297. endif
  2298. ifeq ($(FULL_TARGET),powerpc64-darwin)
  2299. REQUIRE_PACKAGES_RTL=1
  2300. REQUIRE_PACKAGES_PASZLIB=1
  2301. REQUIRE_PACKAGES_FCL-PROCESS=1
  2302. REQUIRE_PACKAGES_HASH=1
  2303. REQUIRE_PACKAGES_LIBTAR=1
  2304. REQUIRE_PACKAGES_FPMKUNIT=1
  2305. REQUIRE_PACKAGES_FCL-BASE=1
  2306. REQUIRE_PACKAGES_FCL-DB=1
  2307. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  2308. REQUIRE_PACKAGES_FCL-IMAGE=1
  2309. REQUIRE_PACKAGES_FCL-NET=1
  2310. REQUIRE_PACKAGES_FCL-PASSRC=1
  2311. REQUIRE_PACKAGES_FCL-REGISTRY=1
  2312. REQUIRE_PACKAGES_FCL-WEB=1
  2313. REQUIRE_PACKAGES_FCL-XML=1
  2314. endif
  2315. ifeq ($(FULL_TARGET),powerpc64-embedded)
  2316. REQUIRE_PACKAGES_RTL=1
  2317. REQUIRE_PACKAGES_PASZLIB=1
  2318. REQUIRE_PACKAGES_FCL-PROCESS=1
  2319. REQUIRE_PACKAGES_HASH=1
  2320. REQUIRE_PACKAGES_LIBTAR=1
  2321. REQUIRE_PACKAGES_FPMKUNIT=1
  2322. REQUIRE_PACKAGES_FCL-BASE=1
  2323. REQUIRE_PACKAGES_FCL-DB=1
  2324. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  2325. REQUIRE_PACKAGES_FCL-IMAGE=1
  2326. REQUIRE_PACKAGES_FCL-NET=1
  2327. REQUIRE_PACKAGES_FCL-PASSRC=1
  2328. REQUIRE_PACKAGES_FCL-REGISTRY=1
  2329. REQUIRE_PACKAGES_FCL-WEB=1
  2330. REQUIRE_PACKAGES_FCL-XML=1
  2331. endif
  2332. ifeq ($(FULL_TARGET),powerpc64-aix)
  2333. REQUIRE_PACKAGES_RTL=1
  2334. REQUIRE_PACKAGES_PASZLIB=1
  2335. REQUIRE_PACKAGES_FCL-PROCESS=1
  2336. REQUIRE_PACKAGES_HASH=1
  2337. REQUIRE_PACKAGES_LIBTAR=1
  2338. REQUIRE_PACKAGES_FPMKUNIT=1
  2339. REQUIRE_PACKAGES_FCL-BASE=1
  2340. REQUIRE_PACKAGES_FCL-DB=1
  2341. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  2342. REQUIRE_PACKAGES_FCL-IMAGE=1
  2343. REQUIRE_PACKAGES_FCL-NET=1
  2344. REQUIRE_PACKAGES_FCL-PASSRC=1
  2345. REQUIRE_PACKAGES_FCL-REGISTRY=1
  2346. REQUIRE_PACKAGES_FCL-WEB=1
  2347. REQUIRE_PACKAGES_FCL-XML=1
  2348. endif
  2349. ifeq ($(FULL_TARGET),avr-embedded)
  2350. REQUIRE_PACKAGES_RTL=1
  2351. REQUIRE_PACKAGES_PASZLIB=1
  2352. REQUIRE_PACKAGES_FCL-PROCESS=1
  2353. REQUIRE_PACKAGES_HASH=1
  2354. REQUIRE_PACKAGES_LIBTAR=1
  2355. REQUIRE_PACKAGES_FPMKUNIT=1
  2356. REQUIRE_PACKAGES_FCL-BASE=1
  2357. REQUIRE_PACKAGES_FCL-DB=1
  2358. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  2359. REQUIRE_PACKAGES_FCL-IMAGE=1
  2360. REQUIRE_PACKAGES_FCL-NET=1
  2361. REQUIRE_PACKAGES_FCL-PASSRC=1
  2362. REQUIRE_PACKAGES_FCL-REGISTRY=1
  2363. REQUIRE_PACKAGES_FCL-WEB=1
  2364. REQUIRE_PACKAGES_FCL-XML=1
  2365. endif
  2366. ifeq ($(FULL_TARGET),armeb-linux)
  2367. REQUIRE_PACKAGES_RTL=1
  2368. REQUIRE_PACKAGES_PASZLIB=1
  2369. REQUIRE_PACKAGES_FCL-PROCESS=1
  2370. REQUIRE_PACKAGES_HASH=1
  2371. REQUIRE_PACKAGES_LIBTAR=1
  2372. REQUIRE_PACKAGES_FPMKUNIT=1
  2373. REQUIRE_PACKAGES_FCL-BASE=1
  2374. REQUIRE_PACKAGES_FCL-DB=1
  2375. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  2376. REQUIRE_PACKAGES_FCL-IMAGE=1
  2377. REQUIRE_PACKAGES_FCL-NET=1
  2378. REQUIRE_PACKAGES_FCL-PASSRC=1
  2379. REQUIRE_PACKAGES_FCL-REGISTRY=1
  2380. REQUIRE_PACKAGES_FCL-WEB=1
  2381. REQUIRE_PACKAGES_FCL-XML=1
  2382. endif
  2383. ifeq ($(FULL_TARGET),armeb-embedded)
  2384. REQUIRE_PACKAGES_RTL=1
  2385. REQUIRE_PACKAGES_PASZLIB=1
  2386. REQUIRE_PACKAGES_FCL-PROCESS=1
  2387. REQUIRE_PACKAGES_HASH=1
  2388. REQUIRE_PACKAGES_LIBTAR=1
  2389. REQUIRE_PACKAGES_FPMKUNIT=1
  2390. REQUIRE_PACKAGES_FCL-BASE=1
  2391. REQUIRE_PACKAGES_FCL-DB=1
  2392. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  2393. REQUIRE_PACKAGES_FCL-IMAGE=1
  2394. REQUIRE_PACKAGES_FCL-NET=1
  2395. REQUIRE_PACKAGES_FCL-PASSRC=1
  2396. REQUIRE_PACKAGES_FCL-REGISTRY=1
  2397. REQUIRE_PACKAGES_FCL-WEB=1
  2398. REQUIRE_PACKAGES_FCL-XML=1
  2399. endif
  2400. ifeq ($(FULL_TARGET),mips-linux)
  2401. REQUIRE_PACKAGES_RTL=1
  2402. REQUIRE_PACKAGES_PASZLIB=1
  2403. REQUIRE_PACKAGES_FCL-PROCESS=1
  2404. REQUIRE_PACKAGES_HASH=1
  2405. REQUIRE_PACKAGES_LIBTAR=1
  2406. REQUIRE_PACKAGES_FPMKUNIT=1
  2407. REQUIRE_PACKAGES_FCL-BASE=1
  2408. REQUIRE_PACKAGES_FCL-DB=1
  2409. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  2410. REQUIRE_PACKAGES_FCL-IMAGE=1
  2411. REQUIRE_PACKAGES_FCL-NET=1
  2412. REQUIRE_PACKAGES_FCL-PASSRC=1
  2413. REQUIRE_PACKAGES_FCL-REGISTRY=1
  2414. REQUIRE_PACKAGES_FCL-WEB=1
  2415. REQUIRE_PACKAGES_FCL-XML=1
  2416. endif
  2417. ifeq ($(FULL_TARGET),mipsel-linux)
  2418. REQUIRE_PACKAGES_RTL=1
  2419. REQUIRE_PACKAGES_PASZLIB=1
  2420. REQUIRE_PACKAGES_FCL-PROCESS=1
  2421. REQUIRE_PACKAGES_HASH=1
  2422. REQUIRE_PACKAGES_LIBTAR=1
  2423. REQUIRE_PACKAGES_FPMKUNIT=1
  2424. REQUIRE_PACKAGES_FCL-BASE=1
  2425. REQUIRE_PACKAGES_FCL-DB=1
  2426. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  2427. REQUIRE_PACKAGES_FCL-IMAGE=1
  2428. REQUIRE_PACKAGES_FCL-NET=1
  2429. REQUIRE_PACKAGES_FCL-PASSRC=1
  2430. REQUIRE_PACKAGES_FCL-REGISTRY=1
  2431. REQUIRE_PACKAGES_FCL-WEB=1
  2432. REQUIRE_PACKAGES_FCL-XML=1
  2433. endif
  2434. ifeq ($(FULL_TARGET),mipsel-embedded)
  2435. REQUIRE_PACKAGES_RTL=1
  2436. REQUIRE_PACKAGES_PASZLIB=1
  2437. REQUIRE_PACKAGES_FCL-PROCESS=1
  2438. REQUIRE_PACKAGES_HASH=1
  2439. REQUIRE_PACKAGES_LIBTAR=1
  2440. REQUIRE_PACKAGES_FPMKUNIT=1
  2441. REQUIRE_PACKAGES_FCL-BASE=1
  2442. REQUIRE_PACKAGES_FCL-DB=1
  2443. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  2444. REQUIRE_PACKAGES_FCL-IMAGE=1
  2445. REQUIRE_PACKAGES_FCL-NET=1
  2446. REQUIRE_PACKAGES_FCL-PASSRC=1
  2447. REQUIRE_PACKAGES_FCL-REGISTRY=1
  2448. REQUIRE_PACKAGES_FCL-WEB=1
  2449. REQUIRE_PACKAGES_FCL-XML=1
  2450. endif
  2451. ifeq ($(FULL_TARGET),mipsel-android)
  2452. REQUIRE_PACKAGES_RTL=1
  2453. REQUIRE_PACKAGES_PASZLIB=1
  2454. REQUIRE_PACKAGES_FCL-PROCESS=1
  2455. REQUIRE_PACKAGES_HASH=1
  2456. REQUIRE_PACKAGES_LIBTAR=1
  2457. REQUIRE_PACKAGES_FPMKUNIT=1
  2458. REQUIRE_PACKAGES_FCL-BASE=1
  2459. REQUIRE_PACKAGES_FCL-DB=1
  2460. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  2461. REQUIRE_PACKAGES_FCL-IMAGE=1
  2462. REQUIRE_PACKAGES_FCL-NET=1
  2463. REQUIRE_PACKAGES_FCL-PASSRC=1
  2464. REQUIRE_PACKAGES_FCL-REGISTRY=1
  2465. REQUIRE_PACKAGES_FCL-WEB=1
  2466. REQUIRE_PACKAGES_FCL-XML=1
  2467. endif
  2468. ifeq ($(FULL_TARGET),jvm-java)
  2469. REQUIRE_PACKAGES_RTL=1
  2470. REQUIRE_PACKAGES_PASZLIB=1
  2471. REQUIRE_PACKAGES_FCL-PROCESS=1
  2472. REQUIRE_PACKAGES_HASH=1
  2473. REQUIRE_PACKAGES_LIBTAR=1
  2474. REQUIRE_PACKAGES_FPMKUNIT=1
  2475. REQUIRE_PACKAGES_FCL-BASE=1
  2476. REQUIRE_PACKAGES_FCL-DB=1
  2477. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  2478. REQUIRE_PACKAGES_FCL-IMAGE=1
  2479. REQUIRE_PACKAGES_FCL-NET=1
  2480. REQUIRE_PACKAGES_FCL-PASSRC=1
  2481. REQUIRE_PACKAGES_FCL-REGISTRY=1
  2482. REQUIRE_PACKAGES_FCL-WEB=1
  2483. REQUIRE_PACKAGES_FCL-XML=1
  2484. endif
  2485. ifeq ($(FULL_TARGET),jvm-android)
  2486. REQUIRE_PACKAGES_RTL=1
  2487. REQUIRE_PACKAGES_PASZLIB=1
  2488. REQUIRE_PACKAGES_FCL-PROCESS=1
  2489. REQUIRE_PACKAGES_HASH=1
  2490. REQUIRE_PACKAGES_LIBTAR=1
  2491. REQUIRE_PACKAGES_FPMKUNIT=1
  2492. REQUIRE_PACKAGES_FCL-BASE=1
  2493. REQUIRE_PACKAGES_FCL-DB=1
  2494. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  2495. REQUIRE_PACKAGES_FCL-IMAGE=1
  2496. REQUIRE_PACKAGES_FCL-NET=1
  2497. REQUIRE_PACKAGES_FCL-PASSRC=1
  2498. REQUIRE_PACKAGES_FCL-REGISTRY=1
  2499. REQUIRE_PACKAGES_FCL-WEB=1
  2500. REQUIRE_PACKAGES_FCL-XML=1
  2501. endif
  2502. ifeq ($(FULL_TARGET),i8086-msdos)
  2503. REQUIRE_PACKAGES_RTL=1
  2504. REQUIRE_PACKAGES_PASZLIB=1
  2505. REQUIRE_PACKAGES_FCL-PROCESS=1
  2506. REQUIRE_PACKAGES_HASH=1
  2507. REQUIRE_PACKAGES_LIBTAR=1
  2508. REQUIRE_PACKAGES_FPMKUNIT=1
  2509. REQUIRE_PACKAGES_FCL-BASE=1
  2510. REQUIRE_PACKAGES_FCL-DB=1
  2511. REQUIRE_PACKAGES_FCL-FPCUNIT=1
  2512. REQUIRE_PACKAGES_FCL-IMAGE=1
  2513. REQUIRE_PACKAGES_FCL-NET=1
  2514. REQUIRE_PACKAGES_FCL-PASSRC=1
  2515. REQUIRE_PACKAGES_FCL-REGISTRY=1
  2516. REQUIRE_PACKAGES_FCL-WEB=1
  2517. REQUIRE_PACKAGES_FCL-XML=1
  2518. endif
  2519. ifdef REQUIRE_PACKAGES_RTL
  2520. PACKAGEDIR_RTL:=$(firstword $(subst /Makefile.fpc,,$(strip $(wildcard $(addsuffix /rtl/Makefile.fpc,$(PACKAGESDIR))))))
  2521. ifneq ($(PACKAGEDIR_RTL),)
  2522. ifneq ($(wildcard $(PACKAGEDIR_RTL)/units/$(TARGETSUFFIX)),)
  2523. UNITDIR_RTL=$(PACKAGEDIR_RTL)/units/$(TARGETSUFFIX)
  2524. else
  2525. UNITDIR_RTL=$(PACKAGEDIR_RTL)
  2526. endif
  2527. ifneq ($(wildcard $(PACKAGEDIR_RTL)/units/$(SOURCESUFFIX)),)
  2528. UNITDIR_FPMAKE_RTL=$(PACKAGEDIR_RTL)/units/$(SOURCESUFFIX)
  2529. else
  2530. ifneq ($(wildcard $(PACKAGEDIR_RTL)/units_bs/$(SOURCESUFFIX)),)
  2531. UNITDIR_FPMAKE_RTL=$(PACKAGEDIR_RTL)/units_bs/$(SOURCESUFFIX)
  2532. else
  2533. UNITDIR_FPMAKE_RTL=$(PACKAGEDIR_RTL)
  2534. endif
  2535. endif
  2536. ifdef CHECKDEPEND
  2537. $(PACKAGEDIR_RTL)/$(OS_TARGET)/$(FPCMADE):
  2538. $(MAKE) -C $(PACKAGEDIR_RTL)/$(OS_TARGET) $(FPCMADE)
  2539. override ALLDEPENDENCIES+=$(PACKAGEDIR_RTL)/$(OS_TARGET)/$(FPCMADE)
  2540. endif
  2541. else
  2542. PACKAGEDIR_RTL=
  2543. UNITDIR_RTL:=$(subst /Package.fpc,,$(strip $(wildcard $(addsuffix /rtl/Package.fpc,$(UNITSDIR)))))
  2544. ifneq ($(UNITDIR_RTL),)
  2545. UNITDIR_RTL:=$(firstword $(UNITDIR_RTL))
  2546. else
  2547. UNITDIR_RTL=
  2548. endif
  2549. endif
  2550. ifdef UNITDIR_RTL
  2551. override COMPILER_UNITDIR+=$(UNITDIR_RTL)
  2552. endif
  2553. ifdef UNITDIR_FPMAKE_RTL
  2554. override COMPILER_FPMAKE_UNITDIR+=$(UNITDIR_FPMAKE_RTL)
  2555. endif
  2556. endif
  2557. ifdef REQUIRE_PACKAGES_PASZLIB
  2558. PACKAGEDIR_PASZLIB:=$(firstword $(subst /Makefile.fpc,,$(strip $(wildcard $(addsuffix /paszlib/Makefile.fpc,$(PACKAGESDIR))))))
  2559. ifneq ($(PACKAGEDIR_PASZLIB),)
  2560. ifneq ($(wildcard $(PACKAGEDIR_PASZLIB)/units/$(TARGETSUFFIX)),)
  2561. UNITDIR_PASZLIB=$(PACKAGEDIR_PASZLIB)/units/$(TARGETSUFFIX)
  2562. else
  2563. UNITDIR_PASZLIB=$(PACKAGEDIR_PASZLIB)
  2564. endif
  2565. ifneq ($(wildcard $(PACKAGEDIR_PASZLIB)/units/$(SOURCESUFFIX)),)
  2566. UNITDIR_FPMAKE_PASZLIB=$(PACKAGEDIR_PASZLIB)/units/$(SOURCESUFFIX)
  2567. else
  2568. ifneq ($(wildcard $(PACKAGEDIR_PASZLIB)/units_bs/$(SOURCESUFFIX)),)
  2569. UNITDIR_FPMAKE_PASZLIB=$(PACKAGEDIR_PASZLIB)/units_bs/$(SOURCESUFFIX)
  2570. else
  2571. UNITDIR_FPMAKE_PASZLIB=$(PACKAGEDIR_PASZLIB)
  2572. endif
  2573. endif
  2574. ifdef CHECKDEPEND
  2575. $(PACKAGEDIR_PASZLIB)/$(FPCMADE):
  2576. $(MAKE) -C $(PACKAGEDIR_PASZLIB) $(FPCMADE)
  2577. override ALLDEPENDENCIES+=$(PACKAGEDIR_PASZLIB)/$(FPCMADE)
  2578. endif
  2579. else
  2580. PACKAGEDIR_PASZLIB=
  2581. UNITDIR_PASZLIB:=$(subst /Package.fpc,,$(strip $(wildcard $(addsuffix /paszlib/Package.fpc,$(UNITSDIR)))))
  2582. ifneq ($(UNITDIR_PASZLIB),)
  2583. UNITDIR_PASZLIB:=$(firstword $(UNITDIR_PASZLIB))
  2584. else
  2585. UNITDIR_PASZLIB=
  2586. endif
  2587. endif
  2588. ifdef UNITDIR_PASZLIB
  2589. override COMPILER_UNITDIR+=$(UNITDIR_PASZLIB)
  2590. endif
  2591. ifdef UNITDIR_FPMAKE_PASZLIB
  2592. override COMPILER_FPMAKE_UNITDIR+=$(UNITDIR_FPMAKE_PASZLIB)
  2593. endif
  2594. endif
  2595. ifdef REQUIRE_PACKAGES_FCL-PROCESS
  2596. PACKAGEDIR_FCL-PROCESS:=$(firstword $(subst /Makefile.fpc,,$(strip $(wildcard $(addsuffix /fcl-process/Makefile.fpc,$(PACKAGESDIR))))))
  2597. ifneq ($(PACKAGEDIR_FCL-PROCESS),)
  2598. ifneq ($(wildcard $(PACKAGEDIR_FCL-PROCESS)/units/$(TARGETSUFFIX)),)
  2599. UNITDIR_FCL-PROCESS=$(PACKAGEDIR_FCL-PROCESS)/units/$(TARGETSUFFIX)
  2600. else
  2601. UNITDIR_FCL-PROCESS=$(PACKAGEDIR_FCL-PROCESS)
  2602. endif
  2603. ifneq ($(wildcard $(PACKAGEDIR_FCL-PROCESS)/units/$(SOURCESUFFIX)),)
  2604. UNITDIR_FPMAKE_FCL-PROCESS=$(PACKAGEDIR_FCL-PROCESS)/units/$(SOURCESUFFIX)
  2605. else
  2606. ifneq ($(wildcard $(PACKAGEDIR_FCL-PROCESS)/units_bs/$(SOURCESUFFIX)),)
  2607. UNITDIR_FPMAKE_FCL-PROCESS=$(PACKAGEDIR_FCL-PROCESS)/units_bs/$(SOURCESUFFIX)
  2608. else
  2609. UNITDIR_FPMAKE_FCL-PROCESS=$(PACKAGEDIR_FCL-PROCESS)
  2610. endif
  2611. endif
  2612. ifdef CHECKDEPEND
  2613. $(PACKAGEDIR_FCL-PROCESS)/$(FPCMADE):
  2614. $(MAKE) -C $(PACKAGEDIR_FCL-PROCESS) $(FPCMADE)
  2615. override ALLDEPENDENCIES+=$(PACKAGEDIR_FCL-PROCESS)/$(FPCMADE)
  2616. endif
  2617. else
  2618. PACKAGEDIR_FCL-PROCESS=
  2619. UNITDIR_FCL-PROCESS:=$(subst /Package.fpc,,$(strip $(wildcard $(addsuffix /fcl-process/Package.fpc,$(UNITSDIR)))))
  2620. ifneq ($(UNITDIR_FCL-PROCESS),)
  2621. UNITDIR_FCL-PROCESS:=$(firstword $(UNITDIR_FCL-PROCESS))
  2622. else
  2623. UNITDIR_FCL-PROCESS=
  2624. endif
  2625. endif
  2626. ifdef UNITDIR_FCL-PROCESS
  2627. override COMPILER_UNITDIR+=$(UNITDIR_FCL-PROCESS)
  2628. endif
  2629. ifdef UNITDIR_FPMAKE_FCL-PROCESS
  2630. override COMPILER_FPMAKE_UNITDIR+=$(UNITDIR_FPMAKE_FCL-PROCESS)
  2631. endif
  2632. endif
  2633. ifdef REQUIRE_PACKAGES_HASH
  2634. PACKAGEDIR_HASH:=$(firstword $(subst /Makefile.fpc,,$(strip $(wildcard $(addsuffix /hash/Makefile.fpc,$(PACKAGESDIR))))))
  2635. ifneq ($(PACKAGEDIR_HASH),)
  2636. ifneq ($(wildcard $(PACKAGEDIR_HASH)/units/$(TARGETSUFFIX)),)
  2637. UNITDIR_HASH=$(PACKAGEDIR_HASH)/units/$(TARGETSUFFIX)
  2638. else
  2639. UNITDIR_HASH=$(PACKAGEDIR_HASH)
  2640. endif
  2641. ifneq ($(wildcard $(PACKAGEDIR_HASH)/units/$(SOURCESUFFIX)),)
  2642. UNITDIR_FPMAKE_HASH=$(PACKAGEDIR_HASH)/units/$(SOURCESUFFIX)
  2643. else
  2644. ifneq ($(wildcard $(PACKAGEDIR_HASH)/units_bs/$(SOURCESUFFIX)),)
  2645. UNITDIR_FPMAKE_HASH=$(PACKAGEDIR_HASH)/units_bs/$(SOURCESUFFIX)
  2646. else
  2647. UNITDIR_FPMAKE_HASH=$(PACKAGEDIR_HASH)
  2648. endif
  2649. endif
  2650. ifdef CHECKDEPEND
  2651. $(PACKAGEDIR_HASH)/$(FPCMADE):
  2652. $(MAKE) -C $(PACKAGEDIR_HASH) $(FPCMADE)
  2653. override ALLDEPENDENCIES+=$(PACKAGEDIR_HASH)/$(FPCMADE)
  2654. endif
  2655. else
  2656. PACKAGEDIR_HASH=
  2657. UNITDIR_HASH:=$(subst /Package.fpc,,$(strip $(wildcard $(addsuffix /hash/Package.fpc,$(UNITSDIR)))))
  2658. ifneq ($(UNITDIR_HASH),)
  2659. UNITDIR_HASH:=$(firstword $(UNITDIR_HASH))
  2660. else
  2661. UNITDIR_HASH=
  2662. endif
  2663. endif
  2664. ifdef UNITDIR_HASH
  2665. override COMPILER_UNITDIR+=$(UNITDIR_HASH)
  2666. endif
  2667. ifdef UNITDIR_FPMAKE_HASH
  2668. override COMPILER_FPMAKE_UNITDIR+=$(UNITDIR_FPMAKE_HASH)
  2669. endif
  2670. endif
  2671. ifdef REQUIRE_PACKAGES_LIBTAR
  2672. PACKAGEDIR_LIBTAR:=$(firstword $(subst /Makefile.fpc,,$(strip $(wildcard $(addsuffix /libtar/Makefile.fpc,$(PACKAGESDIR))))))
  2673. ifneq ($(PACKAGEDIR_LIBTAR),)
  2674. ifneq ($(wildcard $(PACKAGEDIR_LIBTAR)/units/$(TARGETSUFFIX)),)
  2675. UNITDIR_LIBTAR=$(PACKAGEDIR_LIBTAR)/units/$(TARGETSUFFIX)
  2676. else
  2677. UNITDIR_LIBTAR=$(PACKAGEDIR_LIBTAR)
  2678. endif
  2679. ifneq ($(wildcard $(PACKAGEDIR_LIBTAR)/units/$(SOURCESUFFIX)),)
  2680. UNITDIR_FPMAKE_LIBTAR=$(PACKAGEDIR_LIBTAR)/units/$(SOURCESUFFIX)
  2681. else
  2682. ifneq ($(wildcard $(PACKAGEDIR_LIBTAR)/units_bs/$(SOURCESUFFIX)),)
  2683. UNITDIR_FPMAKE_LIBTAR=$(PACKAGEDIR_LIBTAR)/units_bs/$(SOURCESUFFIX)
  2684. else
  2685. UNITDIR_FPMAKE_LIBTAR=$(PACKAGEDIR_LIBTAR)
  2686. endif
  2687. endif
  2688. ifdef CHECKDEPEND
  2689. $(PACKAGEDIR_LIBTAR)/$(FPCMADE):
  2690. $(MAKE) -C $(PACKAGEDIR_LIBTAR) $(FPCMADE)
  2691. override ALLDEPENDENCIES+=$(PACKAGEDIR_LIBTAR)/$(FPCMADE)
  2692. endif
  2693. else
  2694. PACKAGEDIR_LIBTAR=
  2695. UNITDIR_LIBTAR:=$(subst /Package.fpc,,$(strip $(wildcard $(addsuffix /libtar/Package.fpc,$(UNITSDIR)))))
  2696. ifneq ($(UNITDIR_LIBTAR),)
  2697. UNITDIR_LIBTAR:=$(firstword $(UNITDIR_LIBTAR))
  2698. else
  2699. UNITDIR_LIBTAR=
  2700. endif
  2701. endif
  2702. ifdef UNITDIR_LIBTAR
  2703. override COMPILER_UNITDIR+=$(UNITDIR_LIBTAR)
  2704. endif
  2705. ifdef UNITDIR_FPMAKE_LIBTAR
  2706. override COMPILER_FPMAKE_UNITDIR+=$(UNITDIR_FPMAKE_LIBTAR)
  2707. endif
  2708. endif
  2709. ifdef REQUIRE_PACKAGES_FPMKUNIT
  2710. PACKAGEDIR_FPMKUNIT:=$(firstword $(subst /Makefile.fpc,,$(strip $(wildcard $(addsuffix /fpmkunit/Makefile.fpc,$(PACKAGESDIR))))))
  2711. ifneq ($(PACKAGEDIR_FPMKUNIT),)
  2712. ifneq ($(wildcard $(PACKAGEDIR_FPMKUNIT)/units/$(TARGETSUFFIX)),)
  2713. UNITDIR_FPMKUNIT=$(PACKAGEDIR_FPMKUNIT)/units/$(TARGETSUFFIX)
  2714. else
  2715. UNITDIR_FPMKUNIT=$(PACKAGEDIR_FPMKUNIT)
  2716. endif
  2717. ifneq ($(wildcard $(PACKAGEDIR_FPMKUNIT)/units/$(SOURCESUFFIX)),)
  2718. UNITDIR_FPMAKE_FPMKUNIT=$(PACKAGEDIR_FPMKUNIT)/units/$(SOURCESUFFIX)
  2719. else
  2720. ifneq ($(wildcard $(PACKAGEDIR_FPMKUNIT)/units_bs/$(SOURCESUFFIX)),)
  2721. UNITDIR_FPMAKE_FPMKUNIT=$(PACKAGEDIR_FPMKUNIT)/units_bs/$(SOURCESUFFIX)
  2722. else
  2723. UNITDIR_FPMAKE_FPMKUNIT=$(PACKAGEDIR_FPMKUNIT)
  2724. endif
  2725. endif
  2726. ifdef CHECKDEPEND
  2727. $(PACKAGEDIR_FPMKUNIT)/$(FPCMADE):
  2728. $(MAKE) -C $(PACKAGEDIR_FPMKUNIT) $(FPCMADE)
  2729. override ALLDEPENDENCIES+=$(PACKAGEDIR_FPMKUNIT)/$(FPCMADE)
  2730. endif
  2731. else
  2732. PACKAGEDIR_FPMKUNIT=
  2733. UNITDIR_FPMKUNIT:=$(subst /Package.fpc,,$(strip $(wildcard $(addsuffix /fpmkunit/Package.fpc,$(UNITSDIR)))))
  2734. ifneq ($(UNITDIR_FPMKUNIT),)
  2735. UNITDIR_FPMKUNIT:=$(firstword $(UNITDIR_FPMKUNIT))
  2736. else
  2737. UNITDIR_FPMKUNIT=
  2738. endif
  2739. endif
  2740. ifdef UNITDIR_FPMKUNIT
  2741. override COMPILER_UNITDIR+=$(UNITDIR_FPMKUNIT)
  2742. endif
  2743. ifdef UNITDIR_FPMAKE_FPMKUNIT
  2744. override COMPILER_FPMAKE_UNITDIR+=$(UNITDIR_FPMAKE_FPMKUNIT)
  2745. endif
  2746. endif
  2747. ifdef REQUIRE_PACKAGES_FCL-BASE
  2748. PACKAGEDIR_FCL-BASE:=$(firstword $(subst /Makefile.fpc,,$(strip $(wildcard $(addsuffix /fcl-base/Makefile.fpc,$(PACKAGESDIR))))))
  2749. ifneq ($(PACKAGEDIR_FCL-BASE),)
  2750. ifneq ($(wildcard $(PACKAGEDIR_FCL-BASE)/units/$(TARGETSUFFIX)),)
  2751. UNITDIR_FCL-BASE=$(PACKAGEDIR_FCL-BASE)/units/$(TARGETSUFFIX)
  2752. else
  2753. UNITDIR_FCL-BASE=$(PACKAGEDIR_FCL-BASE)
  2754. endif
  2755. ifneq ($(wildcard $(PACKAGEDIR_FCL-BASE)/units/$(SOURCESUFFIX)),)
  2756. UNITDIR_FPMAKE_FCL-BASE=$(PACKAGEDIR_FCL-BASE)/units/$(SOURCESUFFIX)
  2757. else
  2758. ifneq ($(wildcard $(PACKAGEDIR_FCL-BASE)/units_bs/$(SOURCESUFFIX)),)
  2759. UNITDIR_FPMAKE_FCL-BASE=$(PACKAGEDIR_FCL-BASE)/units_bs/$(SOURCESUFFIX)
  2760. else
  2761. UNITDIR_FPMAKE_FCL-BASE=$(PACKAGEDIR_FCL-BASE)
  2762. endif
  2763. endif
  2764. ifdef CHECKDEPEND
  2765. $(PACKAGEDIR_FCL-BASE)/$(FPCMADE):
  2766. $(MAKE) -C $(PACKAGEDIR_FCL-BASE) $(FPCMADE)
  2767. override ALLDEPENDENCIES+=$(PACKAGEDIR_FCL-BASE)/$(FPCMADE)
  2768. endif
  2769. else
  2770. PACKAGEDIR_FCL-BASE=
  2771. UNITDIR_FCL-BASE:=$(subst /Package.fpc,,$(strip $(wildcard $(addsuffix /fcl-base/Package.fpc,$(UNITSDIR)))))
  2772. ifneq ($(UNITDIR_FCL-BASE),)
  2773. UNITDIR_FCL-BASE:=$(firstword $(UNITDIR_FCL-BASE))
  2774. else
  2775. UNITDIR_FCL-BASE=
  2776. endif
  2777. endif
  2778. ifdef UNITDIR_FCL-BASE
  2779. override COMPILER_UNITDIR+=$(UNITDIR_FCL-BASE)
  2780. endif
  2781. ifdef UNITDIR_FPMAKE_FCL-BASE
  2782. override COMPILER_FPMAKE_UNITDIR+=$(UNITDIR_FPMAKE_FCL-BASE)
  2783. endif
  2784. endif
  2785. ifdef REQUIRE_PACKAGES_FCL-DB
  2786. PACKAGEDIR_FCL-DB:=$(firstword $(subst /Makefile.fpc,,$(strip $(wildcard $(addsuffix /fcl-db/Makefile.fpc,$(PACKAGESDIR))))))
  2787. ifneq ($(PACKAGEDIR_FCL-DB),)
  2788. ifneq ($(wildcard $(PACKAGEDIR_FCL-DB)/units/$(TARGETSUFFIX)),)
  2789. UNITDIR_FCL-DB=$(PACKAGEDIR_FCL-DB)/units/$(TARGETSUFFIX)
  2790. else
  2791. UNITDIR_FCL-DB=$(PACKAGEDIR_FCL-DB)
  2792. endif
  2793. ifneq ($(wildcard $(PACKAGEDIR_FCL-DB)/units/$(SOURCESUFFIX)),)
  2794. UNITDIR_FPMAKE_FCL-DB=$(PACKAGEDIR_FCL-DB)/units/$(SOURCESUFFIX)
  2795. else
  2796. ifneq ($(wildcard $(PACKAGEDIR_FCL-DB)/units_bs/$(SOURCESUFFIX)),)
  2797. UNITDIR_FPMAKE_FCL-DB=$(PACKAGEDIR_FCL-DB)/units_bs/$(SOURCESUFFIX)
  2798. else
  2799. UNITDIR_FPMAKE_FCL-DB=$(PACKAGEDIR_FCL-DB)
  2800. endif
  2801. endif
  2802. ifdef CHECKDEPEND
  2803. $(PACKAGEDIR_FCL-DB)/$(FPCMADE):
  2804. $(MAKE) -C $(PACKAGEDIR_FCL-DB) $(FPCMADE)
  2805. override ALLDEPENDENCIES+=$(PACKAGEDIR_FCL-DB)/$(FPCMADE)
  2806. endif
  2807. else
  2808. PACKAGEDIR_FCL-DB=
  2809. UNITDIR_FCL-DB:=$(subst /Package.fpc,,$(strip $(wildcard $(addsuffix /fcl-db/Package.fpc,$(UNITSDIR)))))
  2810. ifneq ($(UNITDIR_FCL-DB),)
  2811. UNITDIR_FCL-DB:=$(firstword $(UNITDIR_FCL-DB))
  2812. else
  2813. UNITDIR_FCL-DB=
  2814. endif
  2815. endif
  2816. ifdef UNITDIR_FCL-DB
  2817. override COMPILER_UNITDIR+=$(UNITDIR_FCL-DB)
  2818. endif
  2819. ifdef UNITDIR_FPMAKE_FCL-DB
  2820. override COMPILER_FPMAKE_UNITDIR+=$(UNITDIR_FPMAKE_FCL-DB)
  2821. endif
  2822. endif
  2823. ifdef REQUIRE_PACKAGES_FCL-FPCUNIT
  2824. PACKAGEDIR_FCL-FPCUNIT:=$(firstword $(subst /Makefile.fpc,,$(strip $(wildcard $(addsuffix /fcl-fpcunit/Makefile.fpc,$(PACKAGESDIR))))))
  2825. ifneq ($(PACKAGEDIR_FCL-FPCUNIT),)
  2826. ifneq ($(wildcard $(PACKAGEDIR_FCL-FPCUNIT)/units/$(TARGETSUFFIX)),)
  2827. UNITDIR_FCL-FPCUNIT=$(PACKAGEDIR_FCL-FPCUNIT)/units/$(TARGETSUFFIX)
  2828. else
  2829. UNITDIR_FCL-FPCUNIT=$(PACKAGEDIR_FCL-FPCUNIT)
  2830. endif
  2831. ifneq ($(wildcard $(PACKAGEDIR_FCL-FPCUNIT)/units/$(SOURCESUFFIX)),)
  2832. UNITDIR_FPMAKE_FCL-FPCUNIT=$(PACKAGEDIR_FCL-FPCUNIT)/units/$(SOURCESUFFIX)
  2833. else
  2834. ifneq ($(wildcard $(PACKAGEDIR_FCL-FPCUNIT)/units_bs/$(SOURCESUFFIX)),)
  2835. UNITDIR_FPMAKE_FCL-FPCUNIT=$(PACKAGEDIR_FCL-FPCUNIT)/units_bs/$(SOURCESUFFIX)
  2836. else
  2837. UNITDIR_FPMAKE_FCL-FPCUNIT=$(PACKAGEDIR_FCL-FPCUNIT)
  2838. endif
  2839. endif
  2840. ifdef CHECKDEPEND
  2841. $(PACKAGEDIR_FCL-FPCUNIT)/$(FPCMADE):
  2842. $(MAKE) -C $(PACKAGEDIR_FCL-FPCUNIT) $(FPCMADE)
  2843. override ALLDEPENDENCIES+=$(PACKAGEDIR_FCL-FPCUNIT)/$(FPCMADE)
  2844. endif
  2845. else
  2846. PACKAGEDIR_FCL-FPCUNIT=
  2847. UNITDIR_FCL-FPCUNIT:=$(subst /Package.fpc,,$(strip $(wildcard $(addsuffix /fcl-fpcunit/Package.fpc,$(UNITSDIR)))))
  2848. ifneq ($(UNITDIR_FCL-FPCUNIT),)
  2849. UNITDIR_FCL-FPCUNIT:=$(firstword $(UNITDIR_FCL-FPCUNIT))
  2850. else
  2851. UNITDIR_FCL-FPCUNIT=
  2852. endif
  2853. endif
  2854. ifdef UNITDIR_FCL-FPCUNIT
  2855. override COMPILER_UNITDIR+=$(UNITDIR_FCL-FPCUNIT)
  2856. endif
  2857. ifdef UNITDIR_FPMAKE_FCL-FPCUNIT
  2858. override COMPILER_FPMAKE_UNITDIR+=$(UNITDIR_FPMAKE_FCL-FPCUNIT)
  2859. endif
  2860. endif
  2861. ifdef REQUIRE_PACKAGES_FCL-IMAGE
  2862. PACKAGEDIR_FCL-IMAGE:=$(firstword $(subst /Makefile.fpc,,$(strip $(wildcard $(addsuffix /fcl-image/Makefile.fpc,$(PACKAGESDIR))))))
  2863. ifneq ($(PACKAGEDIR_FCL-IMAGE),)
  2864. ifneq ($(wildcard $(PACKAGEDIR_FCL-IMAGE)/units/$(TARGETSUFFIX)),)
  2865. UNITDIR_FCL-IMAGE=$(PACKAGEDIR_FCL-IMAGE)/units/$(TARGETSUFFIX)
  2866. else
  2867. UNITDIR_FCL-IMAGE=$(PACKAGEDIR_FCL-IMAGE)
  2868. endif
  2869. ifneq ($(wildcard $(PACKAGEDIR_FCL-IMAGE)/units/$(SOURCESUFFIX)),)
  2870. UNITDIR_FPMAKE_FCL-IMAGE=$(PACKAGEDIR_FCL-IMAGE)/units/$(SOURCESUFFIX)
  2871. else
  2872. ifneq ($(wildcard $(PACKAGEDIR_FCL-IMAGE)/units_bs/$(SOURCESUFFIX)),)
  2873. UNITDIR_FPMAKE_FCL-IMAGE=$(PACKAGEDIR_FCL-IMAGE)/units_bs/$(SOURCESUFFIX)
  2874. else
  2875. UNITDIR_FPMAKE_FCL-IMAGE=$(PACKAGEDIR_FCL-IMAGE)
  2876. endif
  2877. endif
  2878. ifdef CHECKDEPEND
  2879. $(PACKAGEDIR_FCL-IMAGE)/$(FPCMADE):
  2880. $(MAKE) -C $(PACKAGEDIR_FCL-IMAGE) $(FPCMADE)
  2881. override ALLDEPENDENCIES+=$(PACKAGEDIR_FCL-IMAGE)/$(FPCMADE)
  2882. endif
  2883. else
  2884. PACKAGEDIR_FCL-IMAGE=
  2885. UNITDIR_FCL-IMAGE:=$(subst /Package.fpc,,$(strip $(wildcard $(addsuffix /fcl-image/Package.fpc,$(UNITSDIR)))))
  2886. ifneq ($(UNITDIR_FCL-IMAGE),)
  2887. UNITDIR_FCL-IMAGE:=$(firstword $(UNITDIR_FCL-IMAGE))
  2888. else
  2889. UNITDIR_FCL-IMAGE=
  2890. endif
  2891. endif
  2892. ifdef UNITDIR_FCL-IMAGE
  2893. override COMPILER_UNITDIR+=$(UNITDIR_FCL-IMAGE)
  2894. endif
  2895. ifdef UNITDIR_FPMAKE_FCL-IMAGE
  2896. override COMPILER_FPMAKE_UNITDIR+=$(UNITDIR_FPMAKE_FCL-IMAGE)
  2897. endif
  2898. endif
  2899. ifdef REQUIRE_PACKAGES_FCL-NET
  2900. PACKAGEDIR_FCL-NET:=$(firstword $(subst /Makefile.fpc,,$(strip $(wildcard $(addsuffix /fcl-net/Makefile.fpc,$(PACKAGESDIR))))))
  2901. ifneq ($(PACKAGEDIR_FCL-NET),)
  2902. ifneq ($(wildcard $(PACKAGEDIR_FCL-NET)/units/$(TARGETSUFFIX)),)
  2903. UNITDIR_FCL-NET=$(PACKAGEDIR_FCL-NET)/units/$(TARGETSUFFIX)
  2904. else
  2905. UNITDIR_FCL-NET=$(PACKAGEDIR_FCL-NET)
  2906. endif
  2907. ifneq ($(wildcard $(PACKAGEDIR_FCL-NET)/units/$(SOURCESUFFIX)),)
  2908. UNITDIR_FPMAKE_FCL-NET=$(PACKAGEDIR_FCL-NET)/units/$(SOURCESUFFIX)
  2909. else
  2910. ifneq ($(wildcard $(PACKAGEDIR_FCL-NET)/units_bs/$(SOURCESUFFIX)),)
  2911. UNITDIR_FPMAKE_FCL-NET=$(PACKAGEDIR_FCL-NET)/units_bs/$(SOURCESUFFIX)
  2912. else
  2913. UNITDIR_FPMAKE_FCL-NET=$(PACKAGEDIR_FCL-NET)
  2914. endif
  2915. endif
  2916. ifdef CHECKDEPEND
  2917. $(PACKAGEDIR_FCL-NET)/$(FPCMADE):
  2918. $(MAKE) -C $(PACKAGEDIR_FCL-NET) $(FPCMADE)
  2919. override ALLDEPENDENCIES+=$(PACKAGEDIR_FCL-NET)/$(FPCMADE)
  2920. endif
  2921. else
  2922. PACKAGEDIR_FCL-NET=
  2923. UNITDIR_FCL-NET:=$(subst /Package.fpc,,$(strip $(wildcard $(addsuffix /fcl-net/Package.fpc,$(UNITSDIR)))))
  2924. ifneq ($(UNITDIR_FCL-NET),)
  2925. UNITDIR_FCL-NET:=$(firstword $(UNITDIR_FCL-NET))
  2926. else
  2927. UNITDIR_FCL-NET=
  2928. endif
  2929. endif
  2930. ifdef UNITDIR_FCL-NET
  2931. override COMPILER_UNITDIR+=$(UNITDIR_FCL-NET)
  2932. endif
  2933. ifdef UNITDIR_FPMAKE_FCL-NET
  2934. override COMPILER_FPMAKE_UNITDIR+=$(UNITDIR_FPMAKE_FCL-NET)
  2935. endif
  2936. endif
  2937. ifdef REQUIRE_PACKAGES_FCL-PASSRC
  2938. PACKAGEDIR_FCL-PASSRC:=$(firstword $(subst /Makefile.fpc,,$(strip $(wildcard $(addsuffix /fcl-passrc/Makefile.fpc,$(PACKAGESDIR))))))
  2939. ifneq ($(PACKAGEDIR_FCL-PASSRC),)
  2940. ifneq ($(wildcard $(PACKAGEDIR_FCL-PASSRC)/units/$(TARGETSUFFIX)),)
  2941. UNITDIR_FCL-PASSRC=$(PACKAGEDIR_FCL-PASSRC)/units/$(TARGETSUFFIX)
  2942. else
  2943. UNITDIR_FCL-PASSRC=$(PACKAGEDIR_FCL-PASSRC)
  2944. endif
  2945. ifneq ($(wildcard $(PACKAGEDIR_FCL-PASSRC)/units/$(SOURCESUFFIX)),)
  2946. UNITDIR_FPMAKE_FCL-PASSRC=$(PACKAGEDIR_FCL-PASSRC)/units/$(SOURCESUFFIX)
  2947. else
  2948. ifneq ($(wildcard $(PACKAGEDIR_FCL-PASSRC)/units_bs/$(SOURCESUFFIX)),)
  2949. UNITDIR_FPMAKE_FCL-PASSRC=$(PACKAGEDIR_FCL-PASSRC)/units_bs/$(SOURCESUFFIX)
  2950. else
  2951. UNITDIR_FPMAKE_FCL-PASSRC=$(PACKAGEDIR_FCL-PASSRC)
  2952. endif
  2953. endif
  2954. ifdef CHECKDEPEND
  2955. $(PACKAGEDIR_FCL-PASSRC)/$(FPCMADE):
  2956. $(MAKE) -C $(PACKAGEDIR_FCL-PASSRC) $(FPCMADE)
  2957. override ALLDEPENDENCIES+=$(PACKAGEDIR_FCL-PASSRC)/$(FPCMADE)
  2958. endif
  2959. else
  2960. PACKAGEDIR_FCL-PASSRC=
  2961. UNITDIR_FCL-PASSRC:=$(subst /Package.fpc,,$(strip $(wildcard $(addsuffix /fcl-passrc/Package.fpc,$(UNITSDIR)))))
  2962. ifneq ($(UNITDIR_FCL-PASSRC),)
  2963. UNITDIR_FCL-PASSRC:=$(firstword $(UNITDIR_FCL-PASSRC))
  2964. else
  2965. UNITDIR_FCL-PASSRC=
  2966. endif
  2967. endif
  2968. ifdef UNITDIR_FCL-PASSRC
  2969. override COMPILER_UNITDIR+=$(UNITDIR_FCL-PASSRC)
  2970. endif
  2971. ifdef UNITDIR_FPMAKE_FCL-PASSRC
  2972. override COMPILER_FPMAKE_UNITDIR+=$(UNITDIR_FPMAKE_FCL-PASSRC)
  2973. endif
  2974. endif
  2975. ifdef REQUIRE_PACKAGES_FCL-REGISTRY
  2976. PACKAGEDIR_FCL-REGISTRY:=$(firstword $(subst /Makefile.fpc,,$(strip $(wildcard $(addsuffix /fcl-registry/Makefile.fpc,$(PACKAGESDIR))))))
  2977. ifneq ($(PACKAGEDIR_FCL-REGISTRY),)
  2978. ifneq ($(wildcard $(PACKAGEDIR_FCL-REGISTRY)/units/$(TARGETSUFFIX)),)
  2979. UNITDIR_FCL-REGISTRY=$(PACKAGEDIR_FCL-REGISTRY)/units/$(TARGETSUFFIX)
  2980. else
  2981. UNITDIR_FCL-REGISTRY=$(PACKAGEDIR_FCL-REGISTRY)
  2982. endif
  2983. ifneq ($(wildcard $(PACKAGEDIR_FCL-REGISTRY)/units/$(SOURCESUFFIX)),)
  2984. UNITDIR_FPMAKE_FCL-REGISTRY=$(PACKAGEDIR_FCL-REGISTRY)/units/$(SOURCESUFFIX)
  2985. else
  2986. ifneq ($(wildcard $(PACKAGEDIR_FCL-REGISTRY)/units_bs/$(SOURCESUFFIX)),)
  2987. UNITDIR_FPMAKE_FCL-REGISTRY=$(PACKAGEDIR_FCL-REGISTRY)/units_bs/$(SOURCESUFFIX)
  2988. else
  2989. UNITDIR_FPMAKE_FCL-REGISTRY=$(PACKAGEDIR_FCL-REGISTRY)
  2990. endif
  2991. endif
  2992. ifdef CHECKDEPEND
  2993. $(PACKAGEDIR_FCL-REGISTRY)/$(FPCMADE):
  2994. $(MAKE) -C $(PACKAGEDIR_FCL-REGISTRY) $(FPCMADE)
  2995. override ALLDEPENDENCIES+=$(PACKAGEDIR_FCL-REGISTRY)/$(FPCMADE)
  2996. endif
  2997. else
  2998. PACKAGEDIR_FCL-REGISTRY=
  2999. UNITDIR_FCL-REGISTRY:=$(subst /Package.fpc,,$(strip $(wildcard $(addsuffix /fcl-registry/Package.fpc,$(UNITSDIR)))))
  3000. ifneq ($(UNITDIR_FCL-REGISTRY),)
  3001. UNITDIR_FCL-REGISTRY:=$(firstword $(UNITDIR_FCL-REGISTRY))
  3002. else
  3003. UNITDIR_FCL-REGISTRY=
  3004. endif
  3005. endif
  3006. ifdef UNITDIR_FCL-REGISTRY
  3007. override COMPILER_UNITDIR+=$(UNITDIR_FCL-REGISTRY)
  3008. endif
  3009. ifdef UNITDIR_FPMAKE_FCL-REGISTRY
  3010. override COMPILER_FPMAKE_UNITDIR+=$(UNITDIR_FPMAKE_FCL-REGISTRY)
  3011. endif
  3012. endif
  3013. ifdef REQUIRE_PACKAGES_FCL-WEB
  3014. PACKAGEDIR_FCL-WEB:=$(firstword $(subst /Makefile.fpc,,$(strip $(wildcard $(addsuffix /fcl-web/Makefile.fpc,$(PACKAGESDIR))))))
  3015. ifneq ($(PACKAGEDIR_FCL-WEB),)
  3016. ifneq ($(wildcard $(PACKAGEDIR_FCL-WEB)/units/$(TARGETSUFFIX)),)
  3017. UNITDIR_FCL-WEB=$(PACKAGEDIR_FCL-WEB)/units/$(TARGETSUFFIX)
  3018. else
  3019. UNITDIR_FCL-WEB=$(PACKAGEDIR_FCL-WEB)
  3020. endif
  3021. ifneq ($(wildcard $(PACKAGEDIR_FCL-WEB)/units/$(SOURCESUFFIX)),)
  3022. UNITDIR_FPMAKE_FCL-WEB=$(PACKAGEDIR_FCL-WEB)/units/$(SOURCESUFFIX)
  3023. else
  3024. ifneq ($(wildcard $(PACKAGEDIR_FCL-WEB)/units_bs/$(SOURCESUFFIX)),)
  3025. UNITDIR_FPMAKE_FCL-WEB=$(PACKAGEDIR_FCL-WEB)/units_bs/$(SOURCESUFFIX)
  3026. else
  3027. UNITDIR_FPMAKE_FCL-WEB=$(PACKAGEDIR_FCL-WEB)
  3028. endif
  3029. endif
  3030. ifdef CHECKDEPEND
  3031. $(PACKAGEDIR_FCL-WEB)/$(FPCMADE):
  3032. $(MAKE) -C $(PACKAGEDIR_FCL-WEB) $(FPCMADE)
  3033. override ALLDEPENDENCIES+=$(PACKAGEDIR_FCL-WEB)/$(FPCMADE)
  3034. endif
  3035. else
  3036. PACKAGEDIR_FCL-WEB=
  3037. UNITDIR_FCL-WEB:=$(subst /Package.fpc,,$(strip $(wildcard $(addsuffix /fcl-web/Package.fpc,$(UNITSDIR)))))
  3038. ifneq ($(UNITDIR_FCL-WEB),)
  3039. UNITDIR_FCL-WEB:=$(firstword $(UNITDIR_FCL-WEB))
  3040. else
  3041. UNITDIR_FCL-WEB=
  3042. endif
  3043. endif
  3044. ifdef UNITDIR_FCL-WEB
  3045. override COMPILER_UNITDIR+=$(UNITDIR_FCL-WEB)
  3046. endif
  3047. ifdef UNITDIR_FPMAKE_FCL-WEB
  3048. override COMPILER_FPMAKE_UNITDIR+=$(UNITDIR_FPMAKE_FCL-WEB)
  3049. endif
  3050. endif
  3051. ifdef REQUIRE_PACKAGES_FCL-XML
  3052. PACKAGEDIR_FCL-XML:=$(firstword $(subst /Makefile.fpc,,$(strip $(wildcard $(addsuffix /fcl-xml/Makefile.fpc,$(PACKAGESDIR))))))
  3053. ifneq ($(PACKAGEDIR_FCL-XML),)
  3054. ifneq ($(wildcard $(PACKAGEDIR_FCL-XML)/units/$(TARGETSUFFIX)),)
  3055. UNITDIR_FCL-XML=$(PACKAGEDIR_FCL-XML)/units/$(TARGETSUFFIX)
  3056. else
  3057. UNITDIR_FCL-XML=$(PACKAGEDIR_FCL-XML)
  3058. endif
  3059. ifneq ($(wildcard $(PACKAGEDIR_FCL-XML)/units/$(SOURCESUFFIX)),)
  3060. UNITDIR_FPMAKE_FCL-XML=$(PACKAGEDIR_FCL-XML)/units/$(SOURCESUFFIX)
  3061. else
  3062. ifneq ($(wildcard $(PACKAGEDIR_FCL-XML)/units_bs/$(SOURCESUFFIX)),)
  3063. UNITDIR_FPMAKE_FCL-XML=$(PACKAGEDIR_FCL-XML)/units_bs/$(SOURCESUFFIX)
  3064. else
  3065. UNITDIR_FPMAKE_FCL-XML=$(PACKAGEDIR_FCL-XML)
  3066. endif
  3067. endif
  3068. ifdef CHECKDEPEND
  3069. $(PACKAGEDIR_FCL-XML)/$(FPCMADE):
  3070. $(MAKE) -C $(PACKAGEDIR_FCL-XML) $(FPCMADE)
  3071. override ALLDEPENDENCIES+=$(PACKAGEDIR_FCL-XML)/$(FPCMADE)
  3072. endif
  3073. else
  3074. PACKAGEDIR_FCL-XML=
  3075. UNITDIR_FCL-XML:=$(subst /Package.fpc,,$(strip $(wildcard $(addsuffix /fcl-xml/Package.fpc,$(UNITSDIR)))))
  3076. ifneq ($(UNITDIR_FCL-XML),)
  3077. UNITDIR_FCL-XML:=$(firstword $(UNITDIR_FCL-XML))
  3078. else
  3079. UNITDIR_FCL-XML=
  3080. endif
  3081. endif
  3082. ifdef UNITDIR_FCL-XML
  3083. override COMPILER_UNITDIR+=$(UNITDIR_FCL-XML)
  3084. endif
  3085. ifdef UNITDIR_FPMAKE_FCL-XML
  3086. override COMPILER_FPMAKE_UNITDIR+=$(UNITDIR_FPMAKE_FCL-XML)
  3087. endif
  3088. endif
  3089. ifndef NOCPUDEF
  3090. override FPCOPTDEF=$(ARCH)
  3091. endif
  3092. ifneq ($(OS_TARGET),$(OS_SOURCE))
  3093. override FPCOPT+=-T$(OS_TARGET)
  3094. endif
  3095. ifneq ($(CPU_TARGET),$(CPU_SOURCE))
  3096. override FPCOPT+=-P$(ARCH)
  3097. endif
  3098. ifeq ($(OS_SOURCE),openbsd)
  3099. override FPCOPT+=-FD$(NEW_BINUTILS_PATH)
  3100. override FPCMAKEOPT+=-FD$(NEW_BINUTILS_PATH)
  3101. endif
  3102. ifndef CROSSBOOTSTRAP
  3103. ifneq ($(BINUTILSPREFIX),)
  3104. override FPCOPT+=-XP$(BINUTILSPREFIX)
  3105. endif
  3106. ifneq ($(BINUTILSPREFIX),)
  3107. override FPCOPT+=-Xr$(RLINKPATH)
  3108. endif
  3109. endif
  3110. ifndef CROSSCOMPILE
  3111. ifneq ($(BINUTILSPREFIX),)
  3112. override FPCMAKEOPT+=-XP$(BINUTILSPREFIX)
  3113. endif
  3114. endif
  3115. ifdef UNITDIR
  3116. override FPCOPT+=$(addprefix -Fu,$(UNITDIR))
  3117. endif
  3118. ifdef LIBDIR
  3119. override FPCOPT+=$(addprefix -Fl,$(LIBDIR))
  3120. endif
  3121. ifdef OBJDIR
  3122. override FPCOPT+=$(addprefix -Fo,$(OBJDIR))
  3123. endif
  3124. ifdef INCDIR
  3125. override FPCOPT+=$(addprefix -Fi,$(INCDIR))
  3126. endif
  3127. ifdef LINKSMART
  3128. override FPCOPT+=-XX
  3129. endif
  3130. ifdef CREATESMART
  3131. override FPCOPT+=-CX
  3132. endif
  3133. ifdef DEBUG
  3134. override FPCOPT+=-gl
  3135. override FPCOPTDEF+=DEBUG
  3136. endif
  3137. ifdef RELEASE
  3138. ifneq ($(findstring 2.0.,$(FPC_VERSION)),)
  3139. ifeq ($(CPU_TARGET),i386)
  3140. FPCCPUOPT:=-OG2p3
  3141. endif
  3142. ifeq ($(CPU_TARGET),powerpc)
  3143. FPCCPUOPT:=-O1r
  3144. endif
  3145. else
  3146. FPCCPUOPT:=-O2
  3147. endif
  3148. override FPCOPT+=-Ur -Xs $(FPCCPUOPT) -n
  3149. override FPCOPTDEF+=RELEASE
  3150. endif
  3151. ifdef STRIP
  3152. override FPCOPT+=-Xs
  3153. endif
  3154. ifdef OPTIMIZE
  3155. override FPCOPT+=-O2
  3156. endif
  3157. ifdef VERBOSE
  3158. override FPCOPT+=-vwni
  3159. endif
  3160. ifdef COMPILER_OPTIONS
  3161. override FPCOPT+=$(COMPILER_OPTIONS)
  3162. endif
  3163. ifdef COMPILER_UNITDIR
  3164. override FPCOPT+=$(addprefix -Fu,$(COMPILER_UNITDIR))
  3165. endif
  3166. ifdef COMPILER_LIBRARYDIR
  3167. override FPCOPT+=$(addprefix -Fl,$(COMPILER_LIBRARYDIR))
  3168. endif
  3169. ifdef COMPILER_OBJECTDIR
  3170. override FPCOPT+=$(addprefix -Fo,$(COMPILER_OBJECTDIR))
  3171. endif
  3172. ifdef COMPILER_INCLUDEDIR
  3173. override FPCOPT+=$(addprefix -Fi,$(COMPILER_INCLUDEDIR))
  3174. endif
  3175. ifdef CROSSBINDIR
  3176. override FPCOPT+=-FD$(CROSSBINDIR)
  3177. endif
  3178. ifdef COMPILER_TARGETDIR
  3179. override FPCOPT+=-FE$(COMPILER_TARGETDIR)
  3180. ifeq ($(COMPILER_TARGETDIR),.)
  3181. override TARGETDIRPREFIX=
  3182. else
  3183. override TARGETDIRPREFIX=$(COMPILER_TARGETDIR)/
  3184. endif
  3185. endif
  3186. ifdef COMPILER_UNITTARGETDIR
  3187. override FPCOPT+=-FU$(COMPILER_UNITTARGETDIR)
  3188. ifeq ($(COMPILER_UNITTARGETDIR),.)
  3189. override UNITTARGETDIRPREFIX=
  3190. else
  3191. override UNITTARGETDIRPREFIX=$(COMPILER_UNITTARGETDIR)/
  3192. endif
  3193. else
  3194. ifdef COMPILER_TARGETDIR
  3195. override COMPILER_UNITTARGETDIR=$(COMPILER_TARGETDIR)
  3196. override UNITTARGETDIRPREFIX=$(TARGETDIRPREFIX)
  3197. endif
  3198. endif
  3199. ifdef CREATESHARED
  3200. override FPCOPT+=-Cg
  3201. endif
  3202. ifneq ($(findstring $(OS_TARGET),dragonfly freebsd openbsd netbsd linux solaris),)
  3203. ifneq ($(findstring $(CPU_TARGET),x86_64 mips mipsel),)
  3204. override FPCOPT+=-Cg
  3205. endif
  3206. endif
  3207. ifdef LINKSHARED
  3208. endif
  3209. ifdef OPT
  3210. override FPCOPT+=$(OPT)
  3211. endif
  3212. ifdef FPCOPTDEF
  3213. override FPCOPT+=$(addprefix -d,$(FPCOPTDEF))
  3214. endif
  3215. ifdef CFGFILE
  3216. override FPCOPT+=@$(CFGFILE)
  3217. endif
  3218. ifdef USEENV
  3219. override FPCEXTCMD:=$(FPCOPT)
  3220. override FPCOPT:=!FPCEXTCMD
  3221. export FPCEXTCMD
  3222. endif
  3223. override AFULL_TARGET=$(CPU_TARGET)-$(OS_TARGET)
  3224. override AFULL_SOURCE=$(CPU_SOURCE)-$(OS_SOURCE)
  3225. ifneq ($(AFULL_TARGET),$(AFULL_SOURCE))
  3226. override ACROSSCOMPILE=1
  3227. endif
  3228. ifdef ACROSSCOMPILE
  3229. override FPCOPT+=$(CROSSOPT)
  3230. endif
  3231. override COMPILER:=$(strip $(FPC) $(FPCOPT))
  3232. ifneq (,$(findstring -sh ,$(COMPILER)))
  3233. UseEXECPPAS=1
  3234. endif
  3235. ifneq (,$(findstring -s ,$(COMPILER)))
  3236. ifeq ($(FULL_SOURCE),$(FULL_TARGET))
  3237. UseEXECPPAS=1
  3238. endif
  3239. endif
  3240. ifneq ($(UseEXECPPAS),1)
  3241. EXECPPAS=
  3242. else
  3243. ifdef RUNBATCH
  3244. EXECPPAS:=@$(RUNBATCH) $(PPAS)
  3245. else
  3246. EXECPPAS:=@$(PPAS)
  3247. endif
  3248. endif
  3249. .PHONY: fpc_exes
  3250. ifndef CROSSINSTALL
  3251. ifneq ($(TARGET_PROGRAMS),)
  3252. override EXEFILES=$(addsuffix $(EXEEXT),$(TARGET_PROGRAMS))
  3253. override EXEOFILES:=$(addsuffix $(OEXT),$(TARGET_PROGRAMS)) $(addprefix $(STATICLIBPREFIX),$(addsuffix $(STATICLIBEXT),$(TARGET_PROGRAMS))) $(addprefix $(IMPORTLIBPREFIX),$(addsuffix $(STATICLIBEXT),$(TARGET_PROGRAMS)))
  3254. override EXEDBGFILES:=$(addsuffix $(EXEDBGEXT),$(TARGET_PROGRAMS))
  3255. override ALLTARGET+=fpc_exes
  3256. override INSTALLEXEFILES+=$(EXEFILES)
  3257. override CLEANEXEFILES+=$(EXEFILES) $(EXEOFILES)
  3258. override CLEANEXEDBGFILES+=$(EXEDBGFILES)
  3259. ifeq ($(OS_TARGET),os2)
  3260. override CLEANEXEFILES+=$(addsuffix $(AOUTEXT),$(TARGET_PROGRAMS))
  3261. endif
  3262. ifeq ($(OS_TARGET),emx)
  3263. override CLEANEXEFILES+=$(addsuffix $(AOUTEXT),$(TARGET_PROGRAMS))
  3264. endif
  3265. endif
  3266. endif
  3267. fpc_exes: $(COMPILER_TARGETDIR) $(COMPILER_UNITTARGETDIR) $(EXEFILES)
  3268. ifdef TARGET_RSTS
  3269. override RSTFILES=$(addsuffix $(RSTEXT),$(TARGET_RSTS))
  3270. override CLEANRSTFILES+=$(RSTFILES)
  3271. endif
  3272. .PHONY: fpc_all fpc_smart fpc_debug fpc_release fpc_shared
  3273. $(FPCMADE): $(ALLDEPENDENCIES) $(ALLTARGET)
  3274. @$(ECHOREDIR) Compiled > $(FPCMADE)
  3275. fpc_all: $(FPCMADE)
  3276. fpc_smart:
  3277. $(MAKE) all LINKSMART=1 CREATESMART=1
  3278. fpc_debug:
  3279. $(MAKE) all DEBUG=1
  3280. fpc_release:
  3281. $(MAKE) all RELEASE=1
  3282. .SUFFIXES: $(EXEEXT) $(PPUEXT) $(OEXT) .pas .lpr .dpr .pp .rc .res
  3283. $(COMPILER_UNITTARGETDIR):
  3284. $(MKDIRTREE) $(COMPILER_UNITTARGETDIR)
  3285. $(COMPILER_TARGETDIR):
  3286. $(MKDIRTREE) $(COMPILER_TARGETDIR)
  3287. %$(PPUEXT): %.pp
  3288. $(COMPILER) $<
  3289. $(EXECPPAS)
  3290. %$(PPUEXT): %.pas
  3291. $(COMPILER) $<
  3292. $(EXECPPAS)
  3293. %$(EXEEXT): %.pp
  3294. $(COMPILER) $<
  3295. $(EXECPPAS)
  3296. %$(EXEEXT): %.pas
  3297. $(COMPILER) $<
  3298. $(EXECPPAS)
  3299. %$(EXEEXT): %.lpr
  3300. $(COMPILER) $<
  3301. $(EXECPPAS)
  3302. %$(EXEEXT): %.dpr
  3303. $(COMPILER) $<
  3304. $(EXECPPAS)
  3305. %.res: %.rc
  3306. windres -i $< -o $@
  3307. vpath %.pp $(COMPILER_SOURCEDIR) $(COMPILER_INCLUDEDIR)
  3308. vpath %.pas $(COMPILER_SOURCEDIR) $(COMPILER_INCLUDEDIR)
  3309. vpath %.lpr $(COMPILER_SOURCEDIR) $(COMPILER_INCLUDEDIR)
  3310. vpath %.dpr $(COMPILER_SOURCEDIR) $(COMPILER_INCLUDEDIR)
  3311. vpath %.inc $(COMPILER_INCLUDEDIR)
  3312. vpath %$(OEXT) $(COMPILER_UNITTARGETDIR)
  3313. vpath %$(PPUEXT) $(COMPILER_UNITTARGETDIR)
  3314. .PHONY: fpc_shared
  3315. override INSTALLTARGET+=fpc_shared_install
  3316. ifndef SHARED_LIBVERSION
  3317. SHARED_LIBVERSION=$(FPC_VERSION)
  3318. endif
  3319. ifndef SHARED_LIBNAME
  3320. SHARED_LIBNAME=$(PACKAGE_NAME)
  3321. endif
  3322. ifndef SHARED_FULLNAME
  3323. SHARED_FULLNAME=$(SHAREDLIBPREFIX)$(SHARED_LIBNAME)-$(SHARED_LIBVERSION)$(SHAREDLIBEXT)
  3324. endif
  3325. ifndef SHARED_LIBUNITS
  3326. SHARED_LIBUNITS:=$(TARGET_UNITS) $(TARGET_IMPLICITUNITS)
  3327. override SHARED_LIBUNITS:=$(filter-out $(INSTALL_BUILDUNIT),$(SHARED_LIBUNITS))
  3328. endif
  3329. fpc_shared:
  3330. ifdef HASSHAREDLIB
  3331. $(MAKE) all CREATESHARED=1 LINKSHARED=1 CREATESMART=1
  3332. ifneq ($(SHARED_BUILD),n)
  3333. $(PPUMOVE) -q $(SHARED_LIBUNITS) -i$(COMPILER_UNITTARGETDIR) -o$(SHARED_FULLNAME) -d$(COMPILER_UNITTARGETDIR)
  3334. endif
  3335. else
  3336. @$(ECHO) Shared Libraries not supported
  3337. endif
  3338. fpc_shared_install:
  3339. ifneq ($(SHARED_BUILD),n)
  3340. ifneq ($(SHARED_LIBUNITS),)
  3341. ifneq ($(wildcard $(COMPILER_UNITTARGETDIR)/$(SHARED_FULLNAME)),)
  3342. $(INSTALL) $(COMPILER_UNITTARGETDIR)/$(SHARED_FULLNAME) $(INSTALL_SHAREDDIR)
  3343. endif
  3344. endif
  3345. endif
  3346. .PHONY: fpc_install fpc_sourceinstall fpc_exampleinstall
  3347. ifdef INSTALL_UNITS
  3348. override INSTALLPPUFILES+=$(addsuffix $(PPUEXT),$(INSTALL_UNITS))
  3349. endif
  3350. ifdef INSTALL_BUILDUNIT
  3351. override INSTALLPPUFILES:=$(filter-out $(INSTALL_BUILDUNIT)$(PPUEXT),$(INSTALLPPUFILES))
  3352. endif
  3353. ifdef INSTALLPPUFILES
  3354. override INSTALLPPULINKFILES:=$(subst $(PPUEXT),$(OEXT),$(INSTALLPPUFILES)) $(addprefix $(STATICLIBPREFIX),$(subst $(PPUEXT),$(STATICLIBEXT),$(INSTALLPPUFILES))) $(addprefix $(IMPORTLIBPREFIX),$(subst $(PPUEXT),$(STATICLIBEXT),$(INSTALLPPUFILES)))
  3355. ifneq ($(UNITTARGETDIRPREFIX),)
  3356. override INSTALLPPUFILES:=$(addprefix $(UNITTARGETDIRPREFIX),$(notdir $(INSTALLPPUFILES)))
  3357. override INSTALLPPULINKFILES:=$(wildcard $(addprefix $(UNITTARGETDIRPREFIX),$(notdir $(INSTALLPPULINKFILES))))
  3358. endif
  3359. override INSTALL_CREATEPACKAGEFPC=1
  3360. endif
  3361. ifdef INSTALLEXEFILES
  3362. ifneq ($(TARGETDIRPREFIX),)
  3363. override INSTALLEXEFILES:=$(addprefix $(TARGETDIRPREFIX),$(notdir $(INSTALLEXEFILES)))
  3364. endif
  3365. endif
  3366. fpc_install: all $(INSTALLTARGET)
  3367. ifdef INSTALLEXEFILES
  3368. $(MKDIR) $(INSTALL_BINDIR)
  3369. $(INSTALLEXE) $(INSTALLEXEFILES) $(INSTALL_BINDIR)
  3370. endif
  3371. ifdef INSTALL_CREATEPACKAGEFPC
  3372. ifdef FPCMAKE
  3373. ifdef PACKAGE_VERSION
  3374. ifneq ($(wildcard Makefile.fpc),)
  3375. $(FPCMAKE) -p -T$(CPU_TARGET)-$(OS_TARGET) Makefile.fpc
  3376. $(MKDIR) $(INSTALL_UNITDIR)
  3377. $(INSTALL) Package.fpc $(INSTALL_UNITDIR)
  3378. endif
  3379. endif
  3380. endif
  3381. endif
  3382. ifdef INSTALLPPUFILES
  3383. $(MKDIR) $(INSTALL_UNITDIR)
  3384. $(INSTALL) $(INSTALLPPUFILES) $(INSTALL_UNITDIR)
  3385. ifneq ($(INSTALLPPULINKFILES),)
  3386. $(INSTALL) $(INSTALLPPULINKFILES) $(INSTALL_UNITDIR)
  3387. endif
  3388. ifneq ($(wildcard $(LIB_FULLNAME)),)
  3389. $(MKDIR) $(INSTALL_LIBDIR)
  3390. $(INSTALL) $(LIB_FULLNAME) $(INSTALL_LIBDIR)
  3391. ifdef inUnix
  3392. ln -sf $(LIB_FULLNAME) $(INSTALL_LIBDIR)/$(LIB_NAME)
  3393. endif
  3394. endif
  3395. endif
  3396. ifdef INSTALL_FILES
  3397. $(MKDIR) $(INSTALL_DATADIR)
  3398. $(INSTALL) $(INSTALL_FILES) $(INSTALL_DATADIR)
  3399. endif
  3400. fpc_sourceinstall: distclean
  3401. $(MKDIR) $(INSTALL_SOURCEDIR)
  3402. $(COPYTREE) $(BASEDIR)/* $(INSTALL_SOURCEDIR)
  3403. fpc_exampleinstall: $(addsuffix _distclean,$(TARGET_EXAMPLEDIRS))
  3404. ifdef HASEXAMPLES
  3405. $(MKDIR) $(INSTALL_EXAMPLEDIR)
  3406. endif
  3407. ifdef EXAMPLESOURCEFILES
  3408. $(COPY) $(EXAMPLESOURCEFILES) $(INSTALL_EXAMPLEDIR)
  3409. endif
  3410. ifdef TARGET_EXAMPLEDIRS
  3411. $(COPYTREE) $(addsuffix /*,$(TARGET_EXAMPLEDIRS)) $(INSTALL_EXAMPLEDIR)
  3412. endif
  3413. .PHONY: fpc_clean fpc_cleanall fpc_distclean
  3414. ifdef EXEFILES
  3415. override CLEANEXEFILES:=$(addprefix $(TARGETDIRPREFIX),$(CLEANEXEFILES))
  3416. override CLEANEXEDBGFILES:=$(addprefix $(TARGETDIRPREFIX),$(CLEANEXEDBGFILES))
  3417. endif
  3418. ifdef CLEAN_PROGRAMS
  3419. override CLEANEXEFILES+=$(addprefix $(TARGETDIRPREFIX),$(addsuffix $(EXEEXT), $(CLEAN_PROGRAMS)))
  3420. override CLEANEXEDBGFILES+=$(addprefix $(TARGETDIRPREFIX),$(addsuffix $(EXEDBGEXT), $(CLEAN_PROGRAMS)))
  3421. endif
  3422. ifdef CLEAN_UNITS
  3423. override CLEANPPUFILES+=$(addsuffix $(PPUEXT),$(CLEAN_UNITS))
  3424. endif
  3425. ifdef CLEANPPUFILES
  3426. override CLEANPPULINKFILES:=$(subst $(PPUEXT),$(OEXT),$(CLEANPPUFILES)) $(addprefix $(STATICLIBPREFIX),$(subst $(PPUEXT),$(STATICLIBEXT),$(CLEANPPUFILES))) $(addprefix $(IMPORTLIBPREFIX),$(subst $(PPUEXT),$(STATICLIBEXT),$(CLEANPPUFILES)))
  3427. ifdef DEBUGSYMEXT
  3428. override CLEANPPULINKFILES+=$(subst $(PPUEXT),$(DEBUGSYMEXT),$(CLEANPPUFILES))
  3429. endif
  3430. override CLEANPPUFILES:=$(addprefix $(UNITTARGETDIRPREFIX),$(CLEANPPUFILES))
  3431. override CLEANPPULINKFILES:=$(wildcard $(addprefix $(UNITTARGETDIRPREFIX),$(CLEANPPULINKFILES)))
  3432. endif
  3433. fpc_clean: $(CLEANTARGET)
  3434. ifdef CLEANEXEFILES
  3435. -$(DEL) $(CLEANEXEFILES)
  3436. endif
  3437. ifdef CLEANEXEDBGFILES
  3438. -$(DELTREE) $(CLEANEXEDBGFILES)
  3439. endif
  3440. ifdef CLEANPPUFILES
  3441. -$(DEL) $(CLEANPPUFILES)
  3442. endif
  3443. ifneq ($(CLEANPPULINKFILES),)
  3444. -$(DEL) $(CLEANPPULINKFILES)
  3445. endif
  3446. ifdef CLEANRSTFILES
  3447. -$(DEL) $(addprefix $(UNITTARGETDIRPREFIX),$(CLEANRSTFILES))
  3448. endif
  3449. ifdef CLEAN_FILES
  3450. -$(DEL) $(CLEAN_FILES)
  3451. endif
  3452. ifdef LIB_NAME
  3453. -$(DEL) $(LIB_NAME) $(LIB_FULLNAME)
  3454. endif
  3455. -$(DEL) $(FPCMADE) Package.fpc $(PPAS) script.res link.res $(FPCEXTFILE) $(REDIRFILE)
  3456. -$(DEL) *$(ASMEXT) *_ppas$(BATCHEXT)
  3457. fpc_cleanall: $(CLEANTARGET)
  3458. ifdef CLEANEXEFILES
  3459. -$(DEL) $(CLEANEXEFILES)
  3460. endif
  3461. ifdef COMPILER_UNITTARGETDIR
  3462. ifdef CLEANPPUFILES
  3463. -$(DEL) $(CLEANPPUFILES)
  3464. endif
  3465. ifneq ($(CLEANPPULINKFILES),)
  3466. -$(DEL) $(CLEANPPULINKFILES)
  3467. endif
  3468. ifdef CLEANRSTFILES
  3469. -$(DEL) $(addprefix $(UNITTARGETDIRPREFIX),$(CLEANRSTFILES))
  3470. endif
  3471. endif
  3472. ifdef CLEAN_FILES
  3473. -$(DEL) $(CLEAN_FILES)
  3474. endif
  3475. -$(DELTREE) units
  3476. -$(DEL) *$(OEXT) *$(PPUEXT) *$(RSTEXT) *$(ASMEXT) *$(STATICLIBEXT) *$(SHAREDLIBEXT) *$(PPLEXT)
  3477. ifneq ($(PPUEXT),.ppu)
  3478. -$(DEL) *.o *.ppu *.a
  3479. endif
  3480. -$(DELTREE) *$(SMARTEXT)
  3481. -$(DEL) fpcmade.* Package.fpc $(PPAS) script.res link.res $(FPCEXTFILE) $(REDIRFILE)
  3482. -$(DEL) *_ppas$(BATCHEXT)
  3483. ifdef AOUTEXT
  3484. -$(DEL) *$(AOUTEXT)
  3485. endif
  3486. ifdef DEBUGSYMEXT
  3487. -$(DEL) *$(DEBUGSYMEXT)
  3488. endif
  3489. fpc_distclean: cleanall
  3490. .PHONY: fpc_baseinfo
  3491. override INFORULES+=fpc_baseinfo
  3492. fpc_baseinfo:
  3493. @$(ECHO)
  3494. @$(ECHO) == Package info ==
  3495. @$(ECHO) Package Name..... $(PACKAGE_NAME)
  3496. @$(ECHO) Package Version.. $(PACKAGE_VERSION)
  3497. @$(ECHO)
  3498. @$(ECHO) == Configuration info ==
  3499. @$(ECHO)
  3500. @$(ECHO) FPC.......... $(FPC)
  3501. @$(ECHO) FPC Version.. $(FPC_VERSION)
  3502. @$(ECHO) Source CPU... $(CPU_SOURCE)
  3503. @$(ECHO) Target CPU... $(CPU_TARGET)
  3504. @$(ECHO) Source OS.... $(OS_SOURCE)
  3505. @$(ECHO) Target OS.... $(OS_TARGET)
  3506. @$(ECHO) Full Source.. $(FULL_SOURCE)
  3507. @$(ECHO) Full Target.. $(FULL_TARGET)
  3508. @$(ECHO) SourceSuffix. $(SOURCESUFFIX)
  3509. @$(ECHO) TargetSuffix. $(TARGETSUFFIX)
  3510. @$(ECHO) FPC fpmake... $(FPCFPMAKE)
  3511. @$(ECHO)
  3512. @$(ECHO) == Directory info ==
  3513. @$(ECHO)
  3514. @$(ECHO) Required pkgs... $(REQUIRE_PACKAGES)
  3515. @$(ECHO)
  3516. @$(ECHO) Basedir......... $(BASEDIR)
  3517. @$(ECHO) FPCDir.......... $(FPCDIR)
  3518. @$(ECHO) CrossBinDir..... $(CROSSBINDIR)
  3519. @$(ECHO) UnitsDir........ $(UNITSDIR)
  3520. @$(ECHO) PackagesDir..... $(PACKAGESDIR)
  3521. @$(ECHO)
  3522. @$(ECHO) GCC library..... $(GCCLIBDIR)
  3523. @$(ECHO) Other library... $(OTHERLIBDIR)
  3524. @$(ECHO)
  3525. @$(ECHO) == Tools info ==
  3526. @$(ECHO)
  3527. @$(ECHO) As........ $(AS)
  3528. @$(ECHO) Ld........ $(LD)
  3529. @$(ECHO) Ar........ $(AR)
  3530. @$(ECHO) Rc........ $(RC)
  3531. @$(ECHO)
  3532. @$(ECHO) Mv........ $(MVPROG)
  3533. @$(ECHO) Cp........ $(CPPROG)
  3534. @$(ECHO) Rm........ $(RMPROG)
  3535. @$(ECHO) GInstall.. $(GINSTALL)
  3536. @$(ECHO) Echo...... $(ECHO)
  3537. @$(ECHO) Shell..... $(SHELL)
  3538. @$(ECHO) Date...... $(DATE)
  3539. @$(ECHO) FPCMake... $(FPCMAKE)
  3540. @$(ECHO) PPUMove... $(PPUMOVE)
  3541. @$(ECHO) Zip....... $(ZIPPROG)
  3542. @$(ECHO)
  3543. @$(ECHO) == Object info ==
  3544. @$(ECHO)
  3545. @$(ECHO) Target Loaders........ $(TARGET_LOADERS)
  3546. @$(ECHO) Target Units.......... $(TARGET_UNITS)
  3547. @$(ECHO) Target Implicit Units. $(TARGET_IMPLICITUNITS)
  3548. @$(ECHO) Target Programs....... $(TARGET_PROGRAMS)
  3549. @$(ECHO) Target Dirs........... $(TARGET_DIRS)
  3550. @$(ECHO) Target Examples....... $(TARGET_EXAMPLES)
  3551. @$(ECHO) Target ExampleDirs.... $(TARGET_EXAMPLEDIRS)
  3552. @$(ECHO)
  3553. @$(ECHO) Clean Units......... $(CLEAN_UNITS)
  3554. @$(ECHO) Clean Files......... $(CLEAN_FILES)
  3555. @$(ECHO)
  3556. @$(ECHO) Install Units....... $(INSTALL_UNITS)
  3557. @$(ECHO) Install Files....... $(INSTALL_FILES)
  3558. @$(ECHO)
  3559. @$(ECHO) == Install info ==
  3560. @$(ECHO)
  3561. @$(ECHO) DateStr.............. $(DATESTR)
  3562. @$(ECHO) ZipName.............. $(ZIPNAME)
  3563. @$(ECHO) ZipPrefix............ $(ZIPPREFIX)
  3564. @$(ECHO) ZipCrossPrefix....... $(ZIPCROSSPREFIX)
  3565. @$(ECHO) ZipSuffix............ $(ZIPSUFFIX)
  3566. @$(ECHO) FullZipName.......... $(FULLZIPNAME)
  3567. @$(ECHO) Install FPC Package.. $(INSTALL_FPCPACKAGE)
  3568. @$(ECHO)
  3569. @$(ECHO) Install base dir..... $(INSTALL_BASEDIR)
  3570. @$(ECHO) Install binary dir... $(INSTALL_BINDIR)
  3571. @$(ECHO) Install library dir.. $(INSTALL_LIBDIR)
  3572. @$(ECHO) Install units dir.... $(INSTALL_UNITDIR)
  3573. @$(ECHO) Install source dir... $(INSTALL_SOURCEDIR)
  3574. @$(ECHO) Install doc dir...... $(INSTALL_DOCDIR)
  3575. @$(ECHO) Install example dir.. $(INSTALL_EXAMPLEDIR)
  3576. @$(ECHO) Install data dir..... $(INSTALL_DATADIR)
  3577. @$(ECHO)
  3578. @$(ECHO) Dist destination dir. $(DIST_DESTDIR)
  3579. @$(ECHO) Dist zip name........ $(DIST_ZIPNAME)
  3580. @$(ECHO)
  3581. .PHONY: fpc_info
  3582. fpc_info: $(INFORULES)
  3583. .PHONY: fpc_makefile fpc_makefiles fpc_makefile_sub1 fpc_makefile_sub2 \
  3584. fpc_makefile_dirs
  3585. fpc_makefile:
  3586. $(FPCMAKE) -w -T$(OS_TARGET) Makefile.fpc
  3587. fpc_makefile_sub1:
  3588. ifdef TARGET_DIRS
  3589. $(FPCMAKE) -w -T$(OS_TARGET) $(addsuffix /Makefile.fpc,$(TARGET_DIRS))
  3590. endif
  3591. ifdef TARGET_EXAMPLEDIRS
  3592. $(FPCMAKE) -w -T$(OS_TARGET) $(addsuffix /Makefile.fpc,$(TARGET_EXAMPLEDIRS))
  3593. endif
  3594. fpc_makefile_sub2: $(addsuffix _makefile_dirs,$(TARGET_DIRS) $(TARGET_EXAMPLEDIRS))
  3595. fpc_makefile_dirs: fpc_makefile_sub1 fpc_makefile_sub2
  3596. fpc_makefiles: fpc_makefile fpc_makefile_dirs
  3597. all: fpc_all
  3598. debug: fpc_debug
  3599. smart: fpc_smart
  3600. release: fpc_release
  3601. units: fpc_units
  3602. examples:
  3603. shared: fpc_shared
  3604. install: fpc_install
  3605. sourceinstall: fpc_sourceinstall
  3606. exampleinstall: fpc_exampleinstall
  3607. distinstall:
  3608. zipinstall:
  3609. zipsourceinstall:
  3610. zipexampleinstall:
  3611. zipdistinstall:
  3612. clean: fpc_clean
  3613. distclean: fpc_distclean
  3614. cleanall: fpc_cleanall
  3615. info: fpc_info
  3616. makefiles: fpc_makefiles
  3617. .PHONY: all debug smart release units examples shared install sourceinstall exampleinstall distinstall zipinstall zipsourceinstall zipexampleinstall zipdistinstall clean distclean cleanall info makefiles
  3618. ifneq ($(wildcard fpcmake.loc),)
  3619. include fpcmake.loc
  3620. endif
  3621. .NOTPARALLEL: