Makefile 175 KB

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