diff options
| author | Masahiro Yamada <masahiroy@kernel.org> | 2022-08-20 18:15:28 +0900 | 
|---|---|---|
| committer | Masahiro Yamada <masahiroy@kernel.org> | 2022-09-29 02:00:29 +0900 | 
| commit | ed7ceac157c27bdc64e79a3229f5ab6e8899597f (patch) | |
| tree | a9566fb773eb2a9b5a7816e3daeaf209da1b7b83 /Makefile | |
| parent | a7f3257da8a86b96fb9bf1bba40ae0bbd7f1885a (diff) | |
| download | linux-ed7ceac157c27bdc64e79a3229f5ab6e8899597f.tar.bz2 | |
kbuild: add phony targets to ./Kbuild
missing-syscalls and old-atomics are meant to be phony targets.
Adding them to always-y is odd. (always-y should generate something).
Add a new phony target 'prepare', which depends on all the other.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -1202,7 +1202,7 @@ archprepare: outputmakefile archheaders archscripts scripts include/config/kerne  prepare0: archprepare  	$(Q)$(MAKE) $(build)=scripts/mod -	$(Q)$(MAKE) $(build)=. +	$(Q)$(MAKE) $(build)=. prepare  # All the preparing..  prepare: prepare0 |