mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 17:51:43 +00:00
5373633cc9
Using any value for W= will lead to a ton of warnings which are turned into fatal errors because MIPS adds -Werror to arch/mips/*. Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> Cc: linux-mips@linux-mips.org Cc: james.hogan@imgtec.com Patchwork: https://patchwork.linux-mips.org/patch/15785/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
27 lines
576 B
Makefile
27 lines
576 B
Makefile
# Fail on warnings - also for files referenced in subdirs
|
|
# -Werror can be disabled for specific files using:
|
|
# CFLAGS_<file.o> := -Wno-error
|
|
ifeq ($(W),)
|
|
subdir-ccflags-y := -Werror
|
|
endif
|
|
|
|
# platform specific definitions
|
|
include arch/mips/Kbuild.platforms
|
|
obj-y := $(platform-y)
|
|
|
|
# make clean traverses $(obj-) without having included .config, so
|
|
# everything ends up here
|
|
obj- := $(platform-)
|
|
|
|
# mips object files
|
|
# The object files are linked as core-y files would be linked
|
|
|
|
obj-y += kernel/
|
|
obj-y += mm/
|
|
obj-y += net/
|
|
obj-y += vdso/
|
|
|
|
ifdef CONFIG_KVM
|
|
obj-y += kvm/
|
|
endif
|