2019-05-30 21:03:44 +09:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
2010-05-30 23:26:40 +09:00
|
|
|
# Fail on warnings - also for files referenced in subdirs
|
|
|
|
# -Werror can be disabled for specific files using:
|
|
|
|
# CFLAGS_<file.o> := -Wno-error
|
2017-03-17 10:06:12 +09:00
|
|
|
ifeq ($(W),)
|
2010-05-30 23:26:40 +09:00
|
|
|
subdir-ccflags-y := -Werror
|
2017-03-17 10:06:12 +09:00
|
|
|
endif
|
2010-05-30 23:26:40 +09:00
|
|
|
|
2010-05-30 23:27:10 +09:00
|
|
|
# platform specific definitions
|
|
|
|
include arch/mips/Kbuild.platforms
|
|
|
|
obj-y := $(platform-y)
|
2010-05-30 23:26:40 +09:00
|
|
|
|
2010-10-19 09:51:26 +09:00
|
|
|
# make clean traverses $(obj-) without having included .config, so
|
|
|
|
# everything ends up here
|
2020-05-13 17:38:41 +09:00
|
|
|
obj- := $(platform-y)
|
2010-10-19 09:51:26 +09:00
|
|
|
|
2010-05-30 20:27:22 +09:00
|
|
|
# mips object files
|
|
|
|
# The object files are linked as core-y files would be linked
|
|
|
|
|
|
|
|
obj-y += kernel/
|
|
|
|
obj-y += mm/
|
2014-04-08 20:47:14 +09:00
|
|
|
obj-y += net/
|
2015-10-21 17:54:38 +09:00
|
|
|
obj-y += vdso/
|
2012-11-22 11:33:59 +09:00
|
|
|
|
|
|
|
ifdef CONFIG_KVM
|
|
|
|
obj-y += kvm/
|
|
|
|
endif
|
2021-10-13 15:36:22 +09:00
|
|
|
|
|
|
|
# for cleaning
|
|
|
|
subdir- += boot
|