Makefile 147 KB

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