diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-07-17 15:17:59 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-07-18 02:19:31 +0900 |
commit | 30527cefb37d2ad796feb1f469cd097dee8420cb (patch) | |
tree | b43fc48ac4a1d6f3c0d8bb52f3fa8f0bb3080623 /Makefile | |
parent | 60ae1b194b4548102fea0f5091af83b478f2352b (diff) | |
download | linux-30527cefb37d2ad796feb1f469cd097dee8420cb.tar.gz linux-30527cefb37d2ad796feb1f469cd097dee8420cb.tar.bz2 linux-30527cefb37d2ad796feb1f469cd097dee8420cb.zip |
kbuild: remove 'prepare1' target
Now that there is no rule for 'prepare1', it can go away.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -1089,7 +1089,7 @@ scripts: scripts_basic scripts_dtc # archprepare is used in arch Makefiles and when processed asm symlink, # version.h and scripts_basic is processed / created. -PHONY += prepare archprepare prepare1 prepare3 +PHONY += prepare archprepare prepare3 # prepare3 is used to check if we are building in a separate output directory, # and if so do: @@ -1106,10 +1106,8 @@ ifdef building_out_of_srctree fi; endif -prepare1: prepare3 outputmakefile asm-generic $(version_h) $(autoksyms_h) \ - include/generated/utsrelease.h - -archprepare: archheaders archscripts prepare1 scripts +archprepare: archheaders archscripts scripts prepare3 outputmakefile \ + asm-generic $(version_h) $(autoksyms_h) include/generated/utsrelease.h prepare0: archprepare $(Q)$(MAKE) $(build)=scripts/mod |