Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | csky: Move $(core-y) into arch/csky/Kbuild | Masahiro Yamada | 2022-05-13 | 1 | -0/+2 |
| | | | | | | | | Use the standard obj-y form to specify the sub-directories under arch/csky/. Only leave core-y += arch/csky/$(CSKYABI)/ there. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org> Signed-off-by: Guo Ren <guoren@kernel.org> | ||||
* | kbuild: use more subdir- for visiting subdirectories while cleaning | Masahiro Yamada | 2021-10-24 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | | | Documentation/kbuild/makefiles.rst suggests to use "archclean" for cleaning arch/$(SRCARCH)/boot/, but it is not a hard requirement. Since commit d92cc4d51643 ("kbuild: require all architectures to have arch/$(SRCARCH)/Kbuild"), we can use the "subdir- += boot" trick for all architectures. This can take advantage of the parallel option (-j) for "make clean". I also cleaned up the comments in arch/$(SRCARCH)/Makefile. The "archdep" target no longer exists. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org> Reviewed-by: Kees Cook <keescook@chromium.org> Acked-by: Geert Uytterhoeven <geert@linux-m68k.org> Acked-by: Michael Ellerman <mpe@ellerman.id.au> (powerpc) | ||||
* | kbuild: require all architectures to have arch/$(SRCARCH)/Kbuild | Masahiro Yamada | 2021-05-26 | 1 | -0/+1 |
arch/$(SRCARCH)/Kbuild is useful for Makefile cleanups because you can use the obj-y syntax. Add an empty file if it is missing in arch/$(SRCARCH)/. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org> |