Makefile 145 KB

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