Makefile 155 KB

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