Makefile 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447
  1. # This file is included by the global makefile so that you can add your own
  2. # architecture-specific flags and dependencies. Remember to do have actions
  3. # for "archclean" and "archdep" for cleaning up and making dependencies for
  4. # this architecture.
  5. #
  6. # This file is subject to the terms and conditions of the GNU General Public
  7. # License. See the file "COPYING" in the main directory of this archive
  8. # for more details.
  9. #
  10. # Copyright (C) 1994 by Linus Torvalds
  11. # Changes for PPC by Gary Thomas
  12. # Rewritten by Cort Dougan and Paul Mackerras
  13. #
  14. HAS_BIARCH := $(call cc-option-yn, -m32)
  15. # Set default 32 bits cross compilers for vdso and boot wrapper
  16. CROSS32_COMPILE ?=
  17. ifeq ($(HAS_BIARCH),y)
  18. ifeq ($(CROSS32_COMPILE),)
  19. ifdef CONFIG_PPC32
  20. # These options will be overridden by any -mcpu option that the CPU
  21. # or platform code sets later on the command line, but they are needed
  22. # to set a sane 32-bit cpu target for the 64-bit cross compiler which
  23. # may default to the wrong ISA.
  24. KBUILD_CFLAGS += -mcpu=powerpc
  25. KBUILD_AFLAGS += -mcpu=powerpc
  26. endif
  27. endif
  28. endif
  29. ifeq ($(CROSS_COMPILE),)
  30. KBUILD_DEFCONFIG := $(shell uname -m)_defconfig
  31. else
  32. KBUILD_DEFCONFIG := ppc64_defconfig
  33. endif
  34. ifeq ($(CONFIG_PPC64),y)
  35. new_nm := $(shell if $(NM) --help 2>&1 | grep -- '--synthetic' > /dev/null; then echo y; else echo n; fi)
  36. ifeq ($(new_nm),y)
  37. NM := $(NM) --synthetic
  38. endif
  39. endif
  40. # BITS is used as extension for files which are available in a 32 bit
  41. # and a 64 bit version to simplify shared Makefiles.
  42. # e.g.: obj-y += foo_$(BITS).o
  43. export BITS
  44. ifdef CONFIG_PPC64
  45. BITS := 64
  46. else
  47. BITS := 32
  48. endif
  49. machine-y = ppc
  50. machine-$(CONFIG_PPC64) += 64
  51. machine-$(CONFIG_CPU_LITTLE_ENDIAN) += le
  52. UTS_MACHINE := $(subst $(space),,$(machine-y))
  53. # XXX This needs to be before we override LD below
  54. ifdef CONFIG_PPC32
  55. KBUILD_LDFLAGS_MODULE += arch/powerpc/lib/crtsavres.o
  56. else
  57. KBUILD_LDFLAGS_MODULE += -T $(srctree)/arch/powerpc/kernel/module.lds
  58. ifeq ($(call ld-ifversion, -ge, 225000000, y),y)
  59. # Have the linker provide sfpr if possible.
  60. # There is a corresponding test in arch/powerpc/lib/Makefile
  61. KBUILD_LDFLAGS_MODULE += --save-restore-funcs
  62. else
  63. KBUILD_LDFLAGS_MODULE += arch/powerpc/lib/crtsavres.o
  64. endif
  65. endif
  66. ifeq ($(CONFIG_CPU_LITTLE_ENDIAN),y)
  67. KBUILD_CFLAGS += -mlittle-endian
  68. LDFLAGS += -EL
  69. LDEMULATION := lppc
  70. GNUTARGET := powerpcle
  71. MULTIPLEWORD := -mno-multiple
  72. KBUILD_CFLAGS_MODULE += $(call cc-option,-mno-save-toc-indirect)
  73. else
  74. KBUILD_CFLAGS += $(call cc-option,-mbig-endian)
  75. LDFLAGS += -EB
  76. LDEMULATION := ppc
  77. GNUTARGET := powerpc
  78. MULTIPLEWORD := -mmultiple
  79. endif
  80. ifdef CONFIG_PPC64
  81. cflags-$(CONFIG_CPU_BIG_ENDIAN) += $(call cc-option,-mabi=elfv1)
  82. cflags-$(CONFIG_CPU_BIG_ENDIAN) += $(call cc-option,-mcall-aixdesc)
  83. aflags-$(CONFIG_CPU_BIG_ENDIAN) += $(call cc-option,-mabi=elfv1)
  84. aflags-$(CONFIG_CPU_LITTLE_ENDIAN) += -mabi=elfv2
  85. endif
  86. ifneq ($(cc-name),clang)
  87. cflags-$(CONFIG_CPU_LITTLE_ENDIAN) += -mno-strict-align
  88. endif
  89. cflags-$(CONFIG_CPU_BIG_ENDIAN) += $(call cc-option,-mbig-endian)
  90. cflags-$(CONFIG_CPU_LITTLE_ENDIAN) += -mlittle-endian
  91. aflags-$(CONFIG_CPU_BIG_ENDIAN) += $(call cc-option,-mbig-endian)
  92. aflags-$(CONFIG_CPU_LITTLE_ENDIAN) += -mlittle-endian
  93. ifeq ($(HAS_BIARCH),y)
  94. KBUILD_CFLAGS += -m$(BITS)
  95. KBUILD_AFLAGS += -m$(BITS) -Wl,-a$(BITS)
  96. LDFLAGS += -m elf$(BITS)$(LDEMULATION)
  97. KBUILD_ARFLAGS += --target=elf$(BITS)-$(GNUTARGET)
  98. endif
  99. LDFLAGS_vmlinux-y := -Bstatic
  100. LDFLAGS_vmlinux-$(CONFIG_RELOCATABLE) := -pie
  101. LDFLAGS_vmlinux := $(LDFLAGS_vmlinux-y)
  102. LDFLAGS_vmlinux += $(call ld-option,--orphan-handling=warn)
  103. ifeq ($(CONFIG_PPC64),y)
  104. ifeq ($(call cc-option-yn,-mcmodel=medium),y)
  105. # -mcmodel=medium breaks modules because it uses 32bit offsets from
  106. # the TOC pointer to create pointers where possible. Pointers into the
  107. # percpu data area are created by this method.
  108. #
  109. # The kernel module loader relocates the percpu data section from the
  110. # original location (starting with 0xd...) to somewhere in the base
  111. # kernel percpu data space (starting with 0xc...). We need a full
  112. # 64bit relocation for this to work, hence -mcmodel=large.
  113. KBUILD_CFLAGS_MODULE += -mcmodel=large
  114. else
  115. export NO_MINIMAL_TOC := -mno-minimal-toc
  116. endif
  117. endif
  118. CFLAGS-$(CONFIG_PPC64) := $(call cc-option,-mtraceback=no)
  119. ifeq ($(CONFIG_CPU_LITTLE_ENDIAN),y)
  120. CFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mabi=elfv2,$(call cc-option,-mcall-aixdesc))
  121. AFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mabi=elfv2)
  122. else
  123. CFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mabi=elfv1)
  124. CFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mcall-aixdesc)
  125. AFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mabi=elfv1)
  126. endif
  127. CFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mcmodel=medium,$(call cc-option,-mminimal-toc))
  128. CFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mno-pointers-to-nested-functions)
  129. CFLAGS-$(CONFIG_PPC32) := -ffixed-r2 $(MULTIPLEWORD)
  130. CFLAGS-$(CONFIG_PPC32) += $(call cc-option,-mno-readonly-in-sdata)
  131. ifeq ($(CONFIG_PPC_BOOK3S_64),y)
  132. ifeq ($(CONFIG_CPU_LITTLE_ENDIAN),y)
  133. CFLAGS-$(CONFIG_GENERIC_CPU) += -mcpu=power8
  134. CFLAGS-$(CONFIG_GENERIC_CPU) += $(call cc-option,-mtune=power9,-mtune=power8)
  135. else
  136. CFLAGS-$(CONFIG_GENERIC_CPU) += $(call cc-option,-mtune=power7,$(call cc-option,-mtune=power5))
  137. CFLAGS-$(CONFIG_GENERIC_CPU) += $(call cc-option,-mcpu=power5,-mcpu=power4)
  138. endif
  139. else
  140. CFLAGS-$(CONFIG_GENERIC_CPU) += -mcpu=powerpc64
  141. endif
  142. ifdef CONFIG_MPROFILE_KERNEL
  143. ifeq ($(shell $(srctree)/arch/powerpc/tools/gcc-check-mprofile-kernel.sh $(CC) -I$(srctree)/include -D__KERNEL__),OK)
  144. CC_FLAGS_FTRACE := -pg -mprofile-kernel
  145. KBUILD_CPPFLAGS += -DCC_USING_MPROFILE_KERNEL
  146. else
  147. # If the user asked for mprofile-kernel but the toolchain doesn't
  148. # support it, emit a warning and deliberately break the build later
  149. # with mprofile-kernel-not-supported. We would prefer to make this an
  150. # error right here, but then the user would never be able to run
  151. # oldconfig to change their configuration.
  152. $(warning Compiler does not support mprofile-kernel, set CONFIG_DISABLE_MPROFILE_KERNEL)
  153. CC_FLAGS_FTRACE := -mprofile-kernel-not-supported
  154. endif
  155. endif
  156. CFLAGS-$(CONFIG_CELL_CPU) += $(call cc-option,-mcpu=cell)
  157. CFLAGS-$(CONFIG_POWER5_CPU) += $(call cc-option,-mcpu=power5)
  158. CFLAGS-$(CONFIG_POWER6_CPU) += $(call cc-option,-mcpu=power6)
  159. CFLAGS-$(CONFIG_POWER7_CPU) += $(call cc-option,-mcpu=power7)
  160. CFLAGS-$(CONFIG_POWER8_CPU) += $(call cc-option,-mcpu=power8)
  161. CFLAGS-$(CONFIG_POWER9_CPU) += $(call cc-option,-mcpu=power9)
  162. CFLAGS-$(CONFIG_PPC_8xx) += $(call cc-option,-mcpu=860)
  163. # Altivec option not allowed with e500mc64 in GCC.
  164. ifeq ($(CONFIG_ALTIVEC),y)
  165. E5500_CPU := -mcpu=powerpc64
  166. else
  167. E5500_CPU := $(call cc-option,-mcpu=e500mc64,-mcpu=powerpc64)
  168. endif
  169. CFLAGS-$(CONFIG_E5500_CPU) += $(E5500_CPU)
  170. CFLAGS-$(CONFIG_E6500_CPU) += $(call cc-option,-mcpu=e6500,$(E5500_CPU))
  171. ifeq ($(CONFIG_PPC32),y)
  172. ifeq ($(CONFIG_PPC_E500MC),y)
  173. CFLAGS-y += $(call cc-option,-mcpu=e500mc,-mcpu=powerpc)
  174. else
  175. CFLAGS-$(CONFIG_E500) += $(call cc-option,-mcpu=8540 -msoft-float,-mcpu=powerpc)
  176. endif
  177. endif
  178. asinstr := $(call as-instr,lis 9$(comma)foo@high,-DHAVE_AS_ATHIGH=1)
  179. KBUILD_CPPFLAGS += -Iarch/$(ARCH) $(asinstr)
  180. KBUILD_AFLAGS += -Iarch/$(ARCH) $(AFLAGS-y)
  181. KBUILD_CFLAGS += $(call cc-option,-msoft-float)
  182. KBUILD_CFLAGS += -pipe -Iarch/$(ARCH) $(CFLAGS-y)
  183. CPP = $(CC) -E $(KBUILD_CFLAGS)
  184. CHECKFLAGS += -m$(BITS) -D__powerpc__ -D__powerpc$(BITS)__
  185. ifdef CONFIG_CPU_BIG_ENDIAN
  186. CHECKFLAGS += -D__BIG_ENDIAN__
  187. else
  188. CHECKFLAGS += -D__LITTLE_ENDIAN__
  189. endif
  190. ifeq ($(CONFIG_476FPE_ERR46),y)
  191. KBUILD_LDFLAGS_MODULE += --ppc476-workaround \
  192. -T $(srctree)/arch/powerpc/platforms/44x/ppc476_modules.lds
  193. endif
  194. # No AltiVec or VSX instructions when building kernel
  195. KBUILD_CFLAGS += $(call cc-option,-mno-altivec)
  196. KBUILD_CFLAGS += $(call cc-option,-mno-vsx)
  197. # No SPE instruction when building kernel
  198. # (We use all available options to help semi-broken compilers)
  199. KBUILD_CFLAGS += $(call cc-option,-mno-spe)
  200. KBUILD_CFLAGS += $(call cc-option,-mspe=no)
  201. # Enable unit-at-a-time mode when possible. It shrinks the
  202. # kernel considerably.
  203. KBUILD_CFLAGS += $(call cc-option,-funit-at-a-time)
  204. # FIXME: the module load should be taught about the additional relocs
  205. # generated by this.
  206. # revert to pre-gcc-4.4 behaviour of .eh_frame
  207. KBUILD_CFLAGS += $(call cc-option,-fno-dwarf2-cfi-asm)
  208. # Never use string load/store instructions as they are
  209. # often slow when they are implemented at all
  210. KBUILD_CFLAGS += $(call cc-option,-mno-string)
  211. ifeq ($(CONFIG_6xx),y)
  212. KBUILD_CFLAGS += -mcpu=powerpc
  213. endif
  214. # Work around a gcc code-gen bug with -fno-omit-frame-pointer.
  215. ifeq ($(CONFIG_FUNCTION_TRACER),y)
  216. KBUILD_CFLAGS += -mno-sched-epilog
  217. endif
  218. cpu-as-$(CONFIG_4xx) += -Wa,-m405
  219. cpu-as-$(CONFIG_ALTIVEC) += $(call as-option,-Wa$(comma)-maltivec)
  220. cpu-as-$(CONFIG_E200) += -Wa,-me200
  221. cpu-as-$(CONFIG_PPC_BOOK3S_64) += -Wa,-mpower4
  222. KBUILD_AFLAGS += $(cpu-as-y)
  223. KBUILD_CFLAGS += $(cpu-as-y)
  224. KBUILD_AFLAGS += $(aflags-y)
  225. KBUILD_CFLAGS += $(cflags-y)
  226. head-y := arch/powerpc/kernel/head_$(BITS).o
  227. head-$(CONFIG_PPC_8xx) := arch/powerpc/kernel/head_8xx.o
  228. head-$(CONFIG_40x) := arch/powerpc/kernel/head_40x.o
  229. head-$(CONFIG_44x) := arch/powerpc/kernel/head_44x.o
  230. head-$(CONFIG_FSL_BOOKE) := arch/powerpc/kernel/head_fsl_booke.o
  231. head-$(CONFIG_PPC64) += arch/powerpc/kernel/entry_64.o
  232. head-$(CONFIG_PPC_FPU) += arch/powerpc/kernel/fpu.o
  233. head-$(CONFIG_ALTIVEC) += arch/powerpc/kernel/vector.o
  234. head-$(CONFIG_PPC_OF_BOOT_TRAMPOLINE) += arch/powerpc/kernel/prom_init.o
  235. core-y += arch/powerpc/kernel/ \
  236. arch/powerpc/mm/ \
  237. arch/powerpc/lib/ \
  238. arch/powerpc/sysdev/ \
  239. arch/powerpc/platforms/ \
  240. arch/powerpc/math-emu/ \
  241. arch/powerpc/crypto/ \
  242. arch/powerpc/net/
  243. core-$(CONFIG_XMON) += arch/powerpc/xmon/
  244. core-$(CONFIG_KVM) += arch/powerpc/kvm/
  245. core-$(CONFIG_PERF_EVENTS) += arch/powerpc/perf/
  246. core-$(CONFIG_KEXEC_FILE) += arch/powerpc/purgatory/
  247. drivers-$(CONFIG_OPROFILE) += arch/powerpc/oprofile/
  248. # Default to zImage, override when needed
  249. all: zImage
  250. # With make 3.82 we cannot mix normal and wildcard targets
  251. BOOT_TARGETS1 := zImage zImage.initrd uImage
  252. BOOT_TARGETS2 := zImage% dtbImage% treeImage.% cuImage.% simpleImage.% uImage.%
  253. PHONY += $(BOOT_TARGETS1) $(BOOT_TARGETS2)
  254. boot := arch/$(ARCH)/boot
  255. $(BOOT_TARGETS1): vmlinux
  256. $(Q)$(MAKE) $(build)=$(boot) $(patsubst %,$(boot)/%,$@)
  257. $(BOOT_TARGETS2): vmlinux
  258. $(Q)$(MAKE) $(build)=$(boot) $(patsubst %,$(boot)/%,$@)
  259. bootwrapper_install:
  260. $(Q)$(MAKE) $(build)=$(boot) $(patsubst %,$(boot)/%,$@)
  261. %.dtb: scripts
  262. $(Q)$(MAKE) $(build)=$(boot) $(patsubst %,$(boot)/%,$@)
  263. # Used to create 'merged defconfigs'
  264. # To use it $(call) it with the first argument as the base defconfig
  265. # and the second argument as a space separated list of .config files to merge,
  266. # without the .config suffix.
  267. define merge_into_defconfig
  268. $(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh \
  269. -m -O $(objtree) $(srctree)/arch/$(ARCH)/configs/$(1) \
  270. $(foreach config,$(2),$(srctree)/arch/$(ARCH)/configs/$(config).config)
  271. +$(Q)$(MAKE) -f $(srctree)/Makefile olddefconfig
  272. endef
  273. PHONY += pseries_le_defconfig
  274. pseries_le_defconfig:
  275. $(call merge_into_defconfig,pseries_defconfig,le)
  276. PHONY += ppc64le_defconfig
  277. ppc64le_defconfig:
  278. $(call merge_into_defconfig,ppc64_defconfig,le)
  279. PHONY += powernv_be_defconfig
  280. powernv_be_defconfig:
  281. $(call merge_into_defconfig,powernv_defconfig,be)
  282. PHONY += mpc85xx_defconfig
  283. mpc85xx_defconfig:
  284. $(call merge_into_defconfig,mpc85xx_basic_defconfig,\
  285. 85xx-32bit 85xx-hw fsl-emb-nonhw)
  286. PHONY += mpc85xx_smp_defconfig
  287. mpc85xx_smp_defconfig:
  288. $(call merge_into_defconfig,mpc85xx_basic_defconfig,\
  289. 85xx-32bit 85xx-smp 85xx-hw fsl-emb-nonhw)
  290. PHONY += corenet32_smp_defconfig
  291. corenet32_smp_defconfig:
  292. $(call merge_into_defconfig,corenet_basic_defconfig,\
  293. 85xx-32bit 85xx-smp 85xx-hw fsl-emb-nonhw dpaa)
  294. PHONY += corenet64_smp_defconfig
  295. corenet64_smp_defconfig:
  296. $(call merge_into_defconfig,corenet_basic_defconfig,\
  297. 85xx-64bit 85xx-smp altivec 85xx-hw fsl-emb-nonhw dpaa)
  298. PHONY += mpc86xx_defconfig
  299. mpc86xx_defconfig:
  300. $(call merge_into_defconfig,mpc86xx_basic_defconfig,\
  301. 86xx-hw fsl-emb-nonhw)
  302. PHONY += mpc86xx_smp_defconfig
  303. mpc86xx_smp_defconfig:
  304. $(call merge_into_defconfig,mpc86xx_basic_defconfig,\
  305. 86xx-smp 86xx-hw fsl-emb-nonhw)
  306. define archhelp
  307. @echo '* zImage - Build default images selected by kernel config'
  308. @echo ' zImage.* - Compressed kernel image (arch/$(ARCH)/boot/zImage.*)'
  309. @echo ' uImage - U-Boot native image format'
  310. @echo ' cuImage.<dt> - Backwards compatible U-Boot image for older'
  311. @echo ' versions which do not support device trees'
  312. @echo ' dtbImage.<dt> - zImage with an embedded device tree blob'
  313. @echo ' simpleImage.<dt> - Firmware independent image.'
  314. @echo ' treeImage.<dt> - Support for older IBM 4xx firmware (not U-Boot)'
  315. @echo ' install - Install kernel using'
  316. @echo ' (your) ~/bin/$(INSTALLKERNEL) or'
  317. @echo ' (distribution) /sbin/$(INSTALLKERNEL) or'
  318. @echo ' install to $$(INSTALL_PATH) and run lilo'
  319. @echo ' *_defconfig - Select default config from arch/$(ARCH)/configs'
  320. @echo ''
  321. @echo ' Targets with <dt> embed a device tree blob inside the image'
  322. @echo ' These targets support board with firmware that does not'
  323. @echo ' support passing a device tree directly. Replace <dt> with the'
  324. @echo ' name of a dts file from the arch/$(ARCH)/boot/dts/ directory'
  325. @echo ' (minus the .dts extension).'
  326. endef
  327. install:
  328. $(Q)$(MAKE) $(build)=$(boot) install
  329. vdso_install:
  330. ifeq ($(CONFIG_PPC64),y)
  331. $(Q)$(MAKE) $(build)=arch/$(ARCH)/kernel/vdso64 $@
  332. endif
  333. $(Q)$(MAKE) $(build)=arch/$(ARCH)/kernel/vdso32 $@
  334. archclean:
  335. $(Q)$(MAKE) $(clean)=$(boot)
  336. archprepare: checkbin
  337. # Use the file '.tmp_gas_check' for binutils tests, as gas won't output
  338. # to stdout and these checks are run even on install targets.
  339. TOUT := .tmp_gas_check
  340. # Check gcc and binutils versions:
  341. # - gcc-3.4 and binutils-2.14 are a fatal combination
  342. # - Require gcc 4.0 or above on 64-bit
  343. # - gcc-4.2.0 has issues compiling modules on 64-bit
  344. checkbin:
  345. @if test "$(cc-name)" != "clang" \
  346. && test "$(cc-version)" = "0304" ; then \
  347. if ! /bin/echo mftb 5 | $(AS) -v -mppc -many -o $(TOUT) >/dev/null 2>&1 ; then \
  348. echo -n '*** ${VERSION}.${PATCHLEVEL} kernels no longer build '; \
  349. echo 'correctly with gcc-3.4 and your version of binutils.'; \
  350. echo '*** Please upgrade your binutils or downgrade your gcc'; \
  351. false; \
  352. fi ; \
  353. fi
  354. @if test "$(cc-name)" != "clang" \
  355. && test "$(cc-version)" -lt "0400" \
  356. && test "x${CONFIG_PPC64}" = "xy" ; then \
  357. echo -n "Sorry, GCC v4.0 or above is required to build " ; \
  358. echo "the 64-bit powerpc kernel." ; \
  359. false ; \
  360. fi
  361. @if test "$(cc-name)" != "clang" \
  362. && test "$(cc-fullversion)" = "040200" \
  363. && test "x${CONFIG_MODULES}${CONFIG_PPC64}" = "xyy" ; then \
  364. echo -n '*** GCC-4.2.0 cannot compile the 64-bit powerpc ' ; \
  365. echo 'kernel with modules enabled.' ; \
  366. echo -n '*** Please use a different GCC version or ' ; \
  367. echo 'disable kernel modules' ; \
  368. false ; \
  369. fi
  370. @if test "x${CONFIG_CPU_LITTLE_ENDIAN}" = "xy" \
  371. && $(LD) --version | head -1 | grep ' 2\.24$$' >/dev/null ; then \
  372. echo -n '*** binutils 2.24 miscompiles weak symbols ' ; \
  373. echo 'in some circumstances.' ; \
  374. echo -n '*** Please use a different binutils version.' ; \
  375. false ; \
  376. fi
  377. CLEAN_FILES += $(TOUT)