diff options
author | Masahiro Yamada | 2014-02-04 17:24:25 +0900 |
---|---|---|
committer | Tom Rini | 2014-02-19 11:07:50 -0500 |
commit | 7c8278a866122ef6c1201b94cd602f98cc649a2f (patch) | |
tree | b437709eca74cde4fd5febe614c4bc39c9fe2074 /arch/nds32 | |
parent | 9e4140329ee9a787d0f96ac2829d618d47f7973f (diff) |
kbuild: add dummy obj-y to create built-in.o
We are going to switch over to Kbuild in upcoming commits.
Each makefile must have non-empty obj- or obj-y
to generate built-in.o on Kbuild.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'arch/nds32')
-rw-r--r-- | arch/nds32/cpu/n1213/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/nds32/cpu/n1213/Makefile b/arch/nds32/cpu/n1213/Makefile index bb3550eb476..206d304d4c5 100644 --- a/arch/nds32/cpu/n1213/Makefile +++ b/arch/nds32/cpu/n1213/Makefile @@ -9,4 +9,7 @@ # SPDX-License-Identifier: GPL-2.0+ # +# necessary to create built-in.o +obj- := __dummy__.o + extra-y = start.o |