kbuild: remove meaningless prepare2 target
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Fri, 18 Jan 2019 03:58:30 +0000 (12:58 +0900)
committerMasahiro Yamada <yamada.masahiro@socionext.com>
Mon, 28 Jan 2019 00:11:17 +0000 (09:11 +0900)
commit4f1c1008e786cefd9da0ac9ec84192c666719b8c
treef8ed8de21502d5059355f50fc1564ec455f0c80c
parentb79c6aa6a1f111eab2fc08b92541c9e88824be72
kbuild: remove meaningless prepare2 target

There is no build order among the following:
  prepare3
  outputmakefile
  asm-generic
  $(version_h)
  $(autoksyms_h)
  include/generated/utsrelease.h

It is meaningless to insert the prepare2 target between the first
three and the last three.

The comment says, "prepare2 creates a makefile if using a separate
output directory." Let me explain it more precisely. The prepare
targets cannot be executed without the .config file. Because the
configuration targets depend on the outputmakefile target, the
generated makefile is already there before the parepare2 is run.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Makefile