/components/tachart/Makefile

http://github.com/graemeg/lazarus · Makefile · 3151 lines · 3148 code · 0 blank · 3 comment · 9 complexity · ae11dcb6929f773893029dd395214da9 MD5 · raw file

Large files are truncated click here to view the full file

  1. #
  2. # Don't edit, this file is generated by FPCMake Version 2.0.0 [2015-09-05 rev 31523]
  3. #
  4. default: all
  5. MAKEFILETARGETS=i386-linux i386-go32v2 i386-win32 i386-os2 i386-freebsd i386-beos i386-haiku i386-netbsd i386-solaris i386-qnx i386-netware i386-openbsd i386-wdosx i386-darwin i386-emx i386-watcom i386-netwlibc i386-wince i386-embedded i386-symbian i386-nativent i386-iphonesim i386-android i386-aros m68k-linux m68k-freebsd m68k-netbsd m68k-amiga m68k-atari m68k-openbsd m68k-palmos m68k-embedded powerpc-linux powerpc-netbsd powerpc-amiga powerpc-macos powerpc-darwin powerpc-morphos powerpc-embedded powerpc-wii powerpc-aix sparc-linux sparc-netbsd sparc-solaris sparc-embedded x86_64-linux x86_64-freebsd x86_64-netbsd x86_64-solaris x86_64-openbsd x86_64-darwin x86_64-win64 x86_64-embedded x86_64-iphonesim x86_64-aros x86_64-dragonfly arm-linux arm-palmos arm-darwin arm-wince arm-gba arm-nds arm-embedded arm-symbian arm-android powerpc64-linux powerpc64-darwin powerpc64-embedded powerpc64-aix avr-embedded armeb-linux armeb-embedded mips-linux mipsel-linux mipsel-embedded mipsel-android jvm-java jvm-android i8086-msdos i8086-win16 aarch64-linux aarch64-darwin
  6. BSDs = freebsd netbsd openbsd darwin dragonfly
  7. UNIXs = linux $(BSDs) solaris qnx haiku aix
  8. LIMIT83fs = go32v2 os2 emx watcom msdos win16
  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. ifndef FPC
  104. ifdef PP
  105. FPC=$(PP)
  106. endif
  107. endif
  108. ifndef FPC
  109. FPCPROG:=$(strip $(wildcard $(addsuffix /fpc$(SRCEXEEXT),$(SEARCHPATH))))
  110. ifneq ($(FPCPROG),)
  111. FPCPROG:=$(firstword $(FPCPROG))
  112. ifneq ($(CPU_TARGET),)
  113. FPC:=$(shell $(FPCPROG) -P$(CPU_TARGET) -PB)
  114. else
  115. FPC:=$(shell $(FPCPROG) -PB)
  116. endif
  117. ifneq ($(findstring Error,$(FPC)),)
  118. override FPC=$(firstword $(strip $(wildcard $(addsuffix /ppc386$(SRCEXEEXT),$(SEARCHPATH)))))
  119. else
  120. ifeq ($(strip $(wildcard $(FPC))),)
  121. FPC:=$(firstword $(FPCPROG))
  122. endif
  123. endif
  124. else
  125. override FPC=$(firstword $(strip $(wildcard $(addsuffix /ppc386$(SRCEXEEXT),$(SEARCHPATH)))))
  126. endif
  127. endif
  128. override FPC:=$(subst $(SRCEXEEXT),,$(FPC))
  129. override FPC:=$(subst \,/,$(FPC))$(SRCEXEEXT)
  130. FOUNDFPC:=$(strip $(wildcard $(FPC)))
  131. ifeq ($(FOUNDFPC),)
  132. FOUNDFPC=$(strip $(wildcard $(addsuffix /$(FPC),$(SEARCHPATH))))
  133. ifeq ($(FOUNDFPC),)
  134. $(error Compiler $(FPC) not found)
  135. endif
  136. endif
  137. ifndef FPC_COMPILERINFO
  138. FPC_COMPILERINFO:=$(shell $(FPC) -iVSPTPSOTO)
  139. endif
  140. ifndef FPC_VERSION
  141. FPC_VERSION:=$(word 1,$(FPC_COMPILERINFO))
  142. endif
  143. export FPC FPC_VERSION FPC_COMPILERINFO
  144. unexport CHECKDEPEND ALLDEPENDENCIES
  145. ifndef CPU_TARGET
  146. ifdef CPU_TARGET_DEFAULT
  147. CPU_TARGET=$(CPU_TARGET_DEFAULT)
  148. endif
  149. endif
  150. ifndef OS_TARGET
  151. ifdef OS_TARGET_DEFAULT
  152. OS_TARGET=$(OS_TARGET_DEFAULT)
  153. endif
  154. endif
  155. ifndef CPU_SOURCE
  156. CPU_SOURCE:=$(word 2,$(FPC_COMPILERINFO))
  157. endif
  158. ifndef CPU_TARGET
  159. CPU_TARGET:=$(word 3,$(FPC_COMPILERINFO))
  160. endif
  161. ifndef OS_SOURCE
  162. OS_SOURCE:=$(word 4,$(FPC_COMPILERINFO))
  163. endif
  164. ifndef OS_TARGET
  165. OS_TARGET:=$(word 5,$(FPC_COMPILERINFO))
  166. endif
  167. FULL_TARGET=$(CPU_TARGET)-$(OS_TARGET)
  168. FULL_SOURCE=$(CPU_SOURCE)-$(OS_SOURCE)
  169. ifeq ($(CPU_TARGET),armeb)
  170. ARCH=arm
  171. override FPCOPT+=-Cb
  172. else
  173. ifeq ($(CPU_TARGET),armel)
  174. ARCH=arm
  175. override FPCOPT+=-CaEABI
  176. else
  177. ARCH=$(CPU_TARGET)
  178. endif
  179. endif
  180. ifeq ($(FULL_TARGET),arm-embedded)
  181. ifeq ($(SUBARCH),)
  182. $(error When compiling for arm-embedded, a sub-architecture (e.g. SUBARCH=armv4t or SUBARCH=armv7m) must be defined)
  183. endif
  184. override FPCOPT+=-Cp$(SUBARCH)
  185. endif
  186. ifeq ($(FULL_TARGET),avr-embedded)
  187. ifeq ($(SUBARCH),)
  188. $(error When compiling for avr-embedded, a sub-architecture (e.g. SUBARCH=avr25 or SUBARCH=avr35) must be defined)
  189. endif
  190. override FPCOPT+=-Cp$(SUBARCH)
  191. endif
  192. ifeq ($(FULL_TARGET),mipsel-embedded)
  193. ifeq ($(SUBARCH),)
  194. $(error When compiling for mipsel-embedded, a sub-architecture (e.g. SUBARCH=pic32mx) must be defined)
  195. endif
  196. override FPCOPT+=-Cp$(SUBARCH)
  197. endif
  198. ifneq ($(findstring $(OS_SOURCE),$(LIMIT83fs)),)
  199. TARGETSUFFIX=$(OS_TARGET)
  200. SOURCESUFFIX=$(OS_SOURCE)
  201. else
  202. ifneq ($(findstring $(OS_TARGET),$(LIMIT83fs)),)
  203. TARGETSUFFIX=$(OS_TARGET)
  204. else
  205. TARGETSUFFIX=$(FULL_TARGET)
  206. endif
  207. SOURCESUFFIX=$(FULL_SOURCE)
  208. endif
  209. ifneq ($(FULL_TARGET),$(FULL_SOURCE))
  210. CROSSCOMPILE=1
  211. endif
  212. ifeq ($(findstring makefile,$(MAKECMDGOALS)),)
  213. ifeq ($(findstring $(FULL_TARGET),$(MAKEFILETARGETS)),)
  214. $(error The Makefile doesn't support target $(FULL_TARGET), please run fpcmake first)
  215. endif
  216. endif
  217. ifneq ($(findstring $(OS_TARGET),$(BSDs)),)
  218. BSDhier=1
  219. endif
  220. ifeq ($(OS_TARGET),linux)
  221. linuxHier=1
  222. endif
  223. ifndef CROSSCOMPILE
  224. BUILDFULLNATIVE=1
  225. export BUILDFULLNATIVE
  226. endif
  227. ifdef BUILDFULLNATIVE
  228. BUILDNATIVE=1
  229. export BUILDNATIVE
  230. endif
  231. export OS_TARGET OS_SOURCE ARCH CPU_TARGET CPU_SOURCE FULL_TARGET FULL_SOURCE TARGETSUFFIX SOURCESUFFIX CROSSCOMPILE
  232. ifdef FPCDIR
  233. override FPCDIR:=$(subst \,/,$(FPCDIR))
  234. ifeq ($(wildcard $(addprefix $(FPCDIR)/,rtl units)),)
  235. override FPCDIR=wrong
  236. endif
  237. else
  238. override FPCDIR=wrong
  239. endif
  240. ifdef DEFAULT_FPCDIR
  241. ifeq ($(FPCDIR),wrong)
  242. override FPCDIR:=$(subst \,/,$(DEFAULT_FPCDIR))
  243. ifeq ($(wildcard $(addprefix $(FPCDIR)/,rtl units)),)
  244. override FPCDIR=wrong
  245. endif
  246. endif
  247. endif
  248. ifeq ($(FPCDIR),wrong)
  249. ifdef inUnix
  250. override FPCDIR=/usr/local/lib/fpc/$(FPC_VERSION)
  251. ifeq ($(wildcard $(FPCDIR)/units),)
  252. override FPCDIR=/usr/lib/fpc/$(FPC_VERSION)
  253. endif
  254. else
  255. override FPCDIR:=$(subst /$(FPC),,$(firstword $(strip $(wildcard $(addsuffix /$(FPC),$(SEARCHPATH))))))
  256. override FPCDIR:=$(FPCDIR)/..
  257. ifeq ($(wildcard $(addprefix $(FPCDIR)/,rtl units)),)
  258. override FPCDIR:=$(FPCDIR)/..
  259. ifeq ($(wildcard $(addprefix $(FPCDIR)/,rtl units)),)
  260. override FPCDIR:=$(BASEDIR)
  261. ifeq ($(wildcard $(addprefix $(FPCDIR)/,rtl units)),)
  262. override FPCDIR=c:/pp
  263. endif
  264. endif
  265. endif
  266. endif
  267. endif
  268. ifndef CROSSBINDIR
  269. CROSSBINDIR:=$(wildcard $(FPCDIR)/bin/$(TARGETSUFFIX))
  270. endif
  271. ifneq ($(findstring $(OS_TARGET),darwin iphonesim),)
  272. ifeq ($(OS_SOURCE),darwin)
  273. DARWIN2DARWIN=1
  274. endif
  275. endif
  276. ifndef BINUTILSPREFIX
  277. ifndef CROSSBINDIR
  278. ifdef CROSSCOMPILE
  279. ifneq ($(OS_TARGET),msdos)
  280. ifndef DARWIN2DARWIN
  281. ifneq ($(CPU_TARGET),jvm)
  282. BINUTILSPREFIX=$(CPU_TARGET)-$(OS_TARGET)-
  283. ifeq ($(OS_TARGET),android)
  284. ifeq ($(CPU_TARGET),arm)
  285. BINUTILSPREFIX=arm-linux-androideabi-
  286. else
  287. ifeq ($(CPU_TARGET),i386)
  288. BINUTILSPREFIX=i686-linux-android-
  289. else
  290. ifeq ($(CPU_TARGET),mipsel)
  291. BINUTILSPREFIX=mipsel-linux-android-
  292. endif
  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 $(FPCDIR)/packages/base $(FPCDIR)/packages/extra)
  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=tachartlazaruspkg
  334. override PACKAGE_VERSION=1.0
  335. ifndef LCL_PLATFORM
  336. ifeq ($(OS_TARGET),win32)
  337. LCL_PLATFORM=win32
  338. else
  339. ifeq ($(OS_TARGET),win64)
  340. LCL_PLATFORM=win32
  341. else
  342. ifeq ($(OS_TARGET),darwin)
  343. LCL_PLATFORM=carbon
  344. else
  345. LCL_PLATFORM=gtk2
  346. endif
  347. endif
  348. endif
  349. endif
  350. export LCL_PLATFORM
  351. DBG_OPTIONS=
  352. ifeq ($(OS_TARGET),darwin)
  353. DBG_OPTIONS=-gw
  354. endif
  355. ifeq ($(FULL_TARGET),i386-linux)
  356. override TARGET_UNITS+=tachartlazaruspkg.pas
  357. endif
  358. ifeq ($(FULL_TARGET),i386-go32v2)
  359. override TARGET_UNITS+=tachartlazaruspkg.pas
  360. endif
  361. ifeq ($(FULL_TARGET),i386-win32)
  362. override TARGET_UNITS+=tachartlazaruspkg.pas
  363. endif
  364. ifeq ($(FULL_TARGET),i386-os2)
  365. override TARGET_UNITS+=tachartlazaruspkg.pas
  366. endif
  367. ifeq ($(FULL_TARGET),i386-freebsd)
  368. override TARGET_UNITS+=tachartlazaruspkg.pas
  369. endif
  370. ifeq ($(FULL_TARGET),i386-beos)
  371. override TARGET_UNITS+=tachartlazaruspkg.pas
  372. endif
  373. ifeq ($(FULL_TARGET),i386-haiku)
  374. override TARGET_UNITS+=tachartlazaruspkg.pas
  375. endif
  376. ifeq ($(FULL_TARGET),i386-netbsd)
  377. override TARGET_UNITS+=tachartlazaruspkg.pas
  378. endif
  379. ifeq ($(FULL_TARGET),i386-solaris)
  380. override TARGET_UNITS+=tachartlazaruspkg.pas
  381. endif
  382. ifeq ($(FULL_TARGET),i386-qnx)
  383. override TARGET_UNITS+=tachartlazaruspkg.pas
  384. endif
  385. ifeq ($(FULL_TARGET),i386-netware)
  386. override TARGET_UNITS+=tachartlazaruspkg.pas
  387. endif
  388. ifeq ($(FULL_TARGET),i386-openbsd)
  389. override TARGET_UNITS+=tachartlazaruspkg.pas
  390. endif
  391. ifeq ($(FULL_TARGET),i386-wdosx)
  392. override TARGET_UNITS+=tachartlazaruspkg.pas
  393. endif
  394. ifeq ($(FULL_TARGET),i386-darwin)
  395. override TARGET_UNITS+=tachartlazaruspkg.pas
  396. endif
  397. ifeq ($(FULL_TARGET),i386-emx)
  398. override TARGET_UNITS+=tachartlazaruspkg.pas
  399. endif
  400. ifeq ($(FULL_TARGET),i386-watcom)
  401. override TARGET_UNITS+=tachartlazaruspkg.pas
  402. endif
  403. ifeq ($(FULL_TARGET),i386-netwlibc)
  404. override TARGET_UNITS+=tachartlazaruspkg.pas
  405. endif
  406. ifeq ($(FULL_TARGET),i386-wince)
  407. override TARGET_UNITS+=tachartlazaruspkg.pas
  408. endif
  409. ifeq ($(FULL_TARGET),i386-embedded)
  410. override TARGET_UNITS+=tachartlazaruspkg.pas
  411. endif
  412. ifeq ($(FULL_TARGET),i386-symbian)
  413. override TARGET_UNITS+=tachartlazaruspkg.pas
  414. endif
  415. ifeq ($(FULL_TARGET),i386-nativent)
  416. override TARGET_UNITS+=tachartlazaruspkg.pas
  417. endif
  418. ifeq ($(FULL_TARGET),i386-iphonesim)
  419. override TARGET_UNITS+=tachartlazaruspkg.pas
  420. endif
  421. ifeq ($(FULL_TARGET),i386-android)
  422. override TARGET_UNITS+=tachartlazaruspkg.pas
  423. endif
  424. ifeq ($(FULL_TARGET),i386-aros)
  425. override TARGET_UNITS+=tachartlazaruspkg.pas
  426. endif
  427. ifeq ($(FULL_TARGET),m68k-linux)
  428. override TARGET_UNITS+=tachartlazaruspkg.pas
  429. endif
  430. ifeq ($(FULL_TARGET),m68k-freebsd)
  431. override TARGET_UNITS+=tachartlazaruspkg.pas
  432. endif
  433. ifeq ($(FULL_TARGET),m68k-netbsd)
  434. override TARGET_UNITS+=tachartlazaruspkg.pas
  435. endif
  436. ifeq ($(FULL_TARGET),m68k-amiga)
  437. override TARGET_UNITS+=tachartlazaruspkg.pas
  438. endif
  439. ifeq ($(FULL_TARGET),m68k-atari)
  440. override TARGET_UNITS+=tachartlazaruspkg.pas
  441. endif
  442. ifeq ($(FULL_TARGET),m68k-openbsd)
  443. override TARGET_UNITS+=tachartlazaruspkg.pas
  444. endif
  445. ifeq ($(FULL_TARGET),m68k-palmos)
  446. override TARGET_UNITS+=tachartlazaruspkg.pas
  447. endif
  448. ifeq ($(FULL_TARGET),m68k-embedded)
  449. override TARGET_UNITS+=tachartlazaruspkg.pas
  450. endif
  451. ifeq ($(FULL_TARGET),powerpc-linux)
  452. override TARGET_UNITS+=tachartlazaruspkg.pas
  453. endif
  454. ifeq ($(FULL_TARGET),powerpc-netbsd)
  455. override TARGET_UNITS+=tachartlazaruspkg.pas
  456. endif
  457. ifeq ($(FULL_TARGET),powerpc-amiga)
  458. override TARGET_UNITS+=tachartlazaruspkg.pas
  459. endif
  460. ifeq ($(FULL_TARGET),powerpc-macos)
  461. override TARGET_UNITS+=tachartlazaruspkg.pas
  462. endif
  463. ifeq ($(FULL_TARGET),powerpc-darwin)
  464. override TARGET_UNITS+=tachartlazaruspkg.pas
  465. endif
  466. ifeq ($(FULL_TARGET),powerpc-morphos)
  467. override TARGET_UNITS+=tachartlazaruspkg.pas
  468. endif
  469. ifeq ($(FULL_TARGET),powerpc-embedded)
  470. override TARGET_UNITS+=tachartlazaruspkg.pas
  471. endif
  472. ifeq ($(FULL_TARGET),powerpc-wii)
  473. override TARGET_UNITS+=tachartlazaruspkg.pas
  474. endif
  475. ifeq ($(FULL_TARGET),powerpc-aix)
  476. override TARGET_UNITS+=tachartlazaruspkg.pas
  477. endif
  478. ifeq ($(FULL_TARGET),sparc-linux)
  479. override TARGET_UNITS+=tachartlazaruspkg.pas
  480. endif
  481. ifeq ($(FULL_TARGET),sparc-netbsd)
  482. override TARGET_UNITS+=tachartlazaruspkg.pas
  483. endif
  484. ifeq ($(FULL_TARGET),sparc-solaris)
  485. override TARGET_UNITS+=tachartlazaruspkg.pas
  486. endif
  487. ifeq ($(FULL_TARGET),sparc-embedded)
  488. override TARGET_UNITS+=tachartlazaruspkg.pas
  489. endif
  490. ifeq ($(FULL_TARGET),x86_64-linux)
  491. override TARGET_UNITS+=tachartlazaruspkg.pas
  492. endif
  493. ifeq ($(FULL_TARGET),x86_64-freebsd)
  494. override TARGET_UNITS+=tachartlazaruspkg.pas
  495. endif
  496. ifeq ($(FULL_TARGET),x86_64-netbsd)
  497. override TARGET_UNITS+=tachartlazaruspkg.pas
  498. endif
  499. ifeq ($(FULL_TARGET),x86_64-solaris)
  500. override TARGET_UNITS+=tachartlazaruspkg.pas
  501. endif
  502. ifeq ($(FULL_TARGET),x86_64-openbsd)
  503. override TARGET_UNITS+=tachartlazaruspkg.pas
  504. endif
  505. ifeq ($(FULL_TARGET),x86_64-darwin)
  506. override TARGET_UNITS+=tachartlazaruspkg.pas
  507. endif
  508. ifeq ($(FULL_TARGET),x86_64-win64)
  509. override TARGET_UNITS+=tachartlazaruspkg.pas
  510. endif
  511. ifeq ($(FULL_TARGET),x86_64-embedded)
  512. override TARGET_UNITS+=tachartlazaruspkg.pas
  513. endif
  514. ifeq ($(FULL_TARGET),x86_64-iphonesim)
  515. override TARGET_UNITS+=tachartlazaruspkg.pas
  516. endif
  517. ifeq ($(FULL_TARGET),x86_64-aros)
  518. override TARGET_UNITS+=tachartlazaruspkg.pas
  519. endif
  520. ifeq ($(FULL_TARGET),x86_64-dragonfly)
  521. override TARGET_UNITS+=tachartlazaruspkg.pas
  522. endif
  523. ifeq ($(FULL_TARGET),arm-linux)
  524. override TARGET_UNITS+=tachartlazaruspkg.pas
  525. endif
  526. ifeq ($(FULL_TARGET),arm-palmos)
  527. override TARGET_UNITS+=tachartlazaruspkg.pas
  528. endif
  529. ifeq ($(FULL_TARGET),arm-darwin)
  530. override TARGET_UNITS+=tachartlazaruspkg.pas
  531. endif
  532. ifeq ($(FULL_TARGET),arm-wince)
  533. override TARGET_UNITS+=tachartlazaruspkg.pas
  534. endif
  535. ifeq ($(FULL_TARGET),arm-gba)
  536. override TARGET_UNITS+=tachartlazaruspkg.pas
  537. endif
  538. ifeq ($(FULL_TARGET),arm-nds)
  539. override TARGET_UNITS+=tachartlazaruspkg.pas
  540. endif
  541. ifeq ($(FULL_TARGET),arm-embedded)
  542. override TARGET_UNITS+=tachartlazaruspkg.pas
  543. endif
  544. ifeq ($(FULL_TARGET),arm-symbian)
  545. override TARGET_UNITS+=tachartlazaruspkg.pas
  546. endif
  547. ifeq ($(FULL_TARGET),arm-android)
  548. override TARGET_UNITS+=tachartlazaruspkg.pas
  549. endif
  550. ifeq ($(FULL_TARGET),powerpc64-linux)
  551. override TARGET_UNITS+=tachartlazaruspkg.pas
  552. endif
  553. ifeq ($(FULL_TARGET),powerpc64-darwin)
  554. override TARGET_UNITS+=tachartlazaruspkg.pas
  555. endif
  556. ifeq ($(FULL_TARGET),powerpc64-embedded)
  557. override TARGET_UNITS+=tachartlazaruspkg.pas
  558. endif
  559. ifeq ($(FULL_TARGET),powerpc64-aix)
  560. override TARGET_UNITS+=tachartlazaruspkg.pas
  561. endif
  562. ifeq ($(FULL_TARGET),avr-embedded)
  563. override TARGET_UNITS+=tachartlazaruspkg.pas
  564. endif
  565. ifeq ($(FULL_TARGET),armeb-linux)
  566. override TARGET_UNITS+=tachartlazaruspkg.pas
  567. endif
  568. ifeq ($(FULL_TARGET),armeb-embedded)
  569. override TARGET_UNITS+=tachartlazaruspkg.pas
  570. endif
  571. ifeq ($(FULL_TARGET),mips-linux)
  572. override TARGET_UNITS+=tachartlazaruspkg.pas
  573. endif
  574. ifeq ($(FULL_TARGET),mipsel-linux)
  575. override TARGET_UNITS+=tachartlazaruspkg.pas
  576. endif
  577. ifeq ($(FULL_TARGET),mipsel-embedded)
  578. override TARGET_UNITS+=tachartlazaruspkg.pas
  579. endif
  580. ifeq ($(FULL_TARGET),mipsel-android)
  581. override TARGET_UNITS+=tachartlazaruspkg.pas
  582. endif
  583. ifeq ($(FULL_TARGET),jvm-java)
  584. override TARGET_UNITS+=tachartlazaruspkg.pas
  585. endif
  586. ifeq ($(FULL_TARGET),jvm-android)
  587. override TARGET_UNITS+=tachartlazaruspkg.pas
  588. endif
  589. ifeq ($(FULL_TARGET),i8086-msdos)
  590. override TARGET_UNITS+=tachartlazaruspkg.pas
  591. endif
  592. ifeq ($(FULL_TARGET),i8086-win16)
  593. override TARGET_UNITS+=tachartlazaruspkg.pas
  594. endif
  595. ifeq ($(FULL_TARGET),aarch64-linux)
  596. override TARGET_UNITS+=tachartlazaruspkg.pas
  597. endif
  598. ifeq ($(FULL_TARGET),aarch64-darwin)
  599. override TARGET_UNITS+=tachartlazaruspkg.pas
  600. endif
  601. ifeq ($(FULL_TARGET),i386-linux)
  602. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  603. endif
  604. ifeq ($(FULL_TARGET),i386-go32v2)
  605. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  606. endif
  607. ifeq ($(FULL_TARGET),i386-win32)
  608. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  609. endif
  610. ifeq ($(FULL_TARGET),i386-os2)
  611. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  612. endif
  613. ifeq ($(FULL_TARGET),i386-freebsd)
  614. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  615. endif
  616. ifeq ($(FULL_TARGET),i386-beos)
  617. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  618. endif
  619. ifeq ($(FULL_TARGET),i386-haiku)
  620. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  621. endif
  622. ifeq ($(FULL_TARGET),i386-netbsd)
  623. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  624. endif
  625. ifeq ($(FULL_TARGET),i386-solaris)
  626. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  627. endif
  628. ifeq ($(FULL_TARGET),i386-qnx)
  629. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  630. endif
  631. ifeq ($(FULL_TARGET),i386-netware)
  632. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  633. endif
  634. ifeq ($(FULL_TARGET),i386-openbsd)
  635. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  636. endif
  637. ifeq ($(FULL_TARGET),i386-wdosx)
  638. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  639. endif
  640. ifeq ($(FULL_TARGET),i386-darwin)
  641. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  642. endif
  643. ifeq ($(FULL_TARGET),i386-emx)
  644. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  645. endif
  646. ifeq ($(FULL_TARGET),i386-watcom)
  647. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  648. endif
  649. ifeq ($(FULL_TARGET),i386-netwlibc)
  650. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  651. endif
  652. ifeq ($(FULL_TARGET),i386-wince)
  653. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  654. endif
  655. ifeq ($(FULL_TARGET),i386-embedded)
  656. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  657. endif
  658. ifeq ($(FULL_TARGET),i386-symbian)
  659. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  660. endif
  661. ifeq ($(FULL_TARGET),i386-nativent)
  662. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  663. endif
  664. ifeq ($(FULL_TARGET),i386-iphonesim)
  665. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  666. endif
  667. ifeq ($(FULL_TARGET),i386-android)
  668. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  669. endif
  670. ifeq ($(FULL_TARGET),i386-aros)
  671. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  672. endif
  673. ifeq ($(FULL_TARGET),m68k-linux)
  674. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  675. endif
  676. ifeq ($(FULL_TARGET),m68k-freebsd)
  677. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  678. endif
  679. ifeq ($(FULL_TARGET),m68k-netbsd)
  680. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  681. endif
  682. ifeq ($(FULL_TARGET),m68k-amiga)
  683. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  684. endif
  685. ifeq ($(FULL_TARGET),m68k-atari)
  686. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  687. endif
  688. ifeq ($(FULL_TARGET),m68k-openbsd)
  689. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  690. endif
  691. ifeq ($(FULL_TARGET),m68k-palmos)
  692. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  693. endif
  694. ifeq ($(FULL_TARGET),m68k-embedded)
  695. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  696. endif
  697. ifeq ($(FULL_TARGET),powerpc-linux)
  698. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  699. endif
  700. ifeq ($(FULL_TARGET),powerpc-netbsd)
  701. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  702. endif
  703. ifeq ($(FULL_TARGET),powerpc-amiga)
  704. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  705. endif
  706. ifeq ($(FULL_TARGET),powerpc-macos)
  707. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  708. endif
  709. ifeq ($(FULL_TARGET),powerpc-darwin)
  710. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  711. endif
  712. ifeq ($(FULL_TARGET),powerpc-morphos)
  713. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  714. endif
  715. ifeq ($(FULL_TARGET),powerpc-embedded)
  716. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  717. endif
  718. ifeq ($(FULL_TARGET),powerpc-wii)
  719. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  720. endif
  721. ifeq ($(FULL_TARGET),powerpc-aix)
  722. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  723. endif
  724. ifeq ($(FULL_TARGET),sparc-linux)
  725. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  726. endif
  727. ifeq ($(FULL_TARGET),sparc-netbsd)
  728. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  729. endif
  730. ifeq ($(FULL_TARGET),sparc-solaris)
  731. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  732. endif
  733. ifeq ($(FULL_TARGET),sparc-embedded)
  734. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  735. endif
  736. ifeq ($(FULL_TARGET),x86_64-linux)
  737. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  738. endif
  739. ifeq ($(FULL_TARGET),x86_64-freebsd)
  740. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  741. endif
  742. ifeq ($(FULL_TARGET),x86_64-netbsd)
  743. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  744. endif
  745. ifeq ($(FULL_TARGET),x86_64-solaris)
  746. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  747. endif
  748. ifeq ($(FULL_TARGET),x86_64-openbsd)
  749. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  750. endif
  751. ifeq ($(FULL_TARGET),x86_64-darwin)
  752. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  753. endif
  754. ifeq ($(FULL_TARGET),x86_64-win64)
  755. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  756. endif
  757. ifeq ($(FULL_TARGET),x86_64-embedded)
  758. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  759. endif
  760. ifeq ($(FULL_TARGET),x86_64-iphonesim)
  761. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  762. endif
  763. ifeq ($(FULL_TARGET),x86_64-aros)
  764. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  765. endif
  766. ifeq ($(FULL_TARGET),x86_64-dragonfly)
  767. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  768. endif
  769. ifeq ($(FULL_TARGET),arm-linux)
  770. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  771. endif
  772. ifeq ($(FULL_TARGET),arm-palmos)
  773. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  774. endif
  775. ifeq ($(FULL_TARGET),arm-darwin)
  776. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  777. endif
  778. ifeq ($(FULL_TARGET),arm-wince)
  779. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  780. endif
  781. ifeq ($(FULL_TARGET),arm-gba)
  782. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  783. endif
  784. ifeq ($(FULL_TARGET),arm-nds)
  785. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  786. endif
  787. ifeq ($(FULL_TARGET),arm-embedded)
  788. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  789. endif
  790. ifeq ($(FULL_TARGET),arm-symbian)
  791. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  792. endif
  793. ifeq ($(FULL_TARGET),arm-android)
  794. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  795. endif
  796. ifeq ($(FULL_TARGET),powerpc64-linux)
  797. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  798. endif
  799. ifeq ($(FULL_TARGET),powerpc64-darwin)
  800. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  801. endif
  802. ifeq ($(FULL_TARGET),powerpc64-embedded)
  803. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  804. endif
  805. ifeq ($(FULL_TARGET),powerpc64-aix)
  806. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  807. endif
  808. ifeq ($(FULL_TARGET),avr-embedded)
  809. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  810. endif
  811. ifeq ($(FULL_TARGET),armeb-linux)
  812. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  813. endif
  814. ifeq ($(FULL_TARGET),armeb-embedded)
  815. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  816. endif
  817. ifeq ($(FULL_TARGET),mips-linux)
  818. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  819. endif
  820. ifeq ($(FULL_TARGET),mipsel-linux)
  821. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  822. endif
  823. ifeq ($(FULL_TARGET),mipsel-embedded)
  824. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  825. endif
  826. ifeq ($(FULL_TARGET),mipsel-android)
  827. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  828. endif
  829. ifeq ($(FULL_TARGET),jvm-java)
  830. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  831. endif
  832. ifeq ($(FULL_TARGET),jvm-android)
  833. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  834. endif
  835. ifeq ($(FULL_TARGET),i8086-msdos)
  836. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  837. endif
  838. ifeq ($(FULL_TARGET),i8086-win16)
  839. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  840. endif
  841. ifeq ($(FULL_TARGET),aarch64-linux)
  842. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
  843. endif
  844. ifeq ($(FULL_TARGET),aarch64-darwin)
  845. override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR…