diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-08-22 02:33:21 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-08-29 23:54:29 +0900 |
commit | bc7b752a7a1c8498f5c48f5b1b63147e32f649dc (patch) | |
tree | 26d615bce689a2a3534effcdac1e892672acfa1b /Makefile | |
parent | fc01adc41679b19ee35a79e2bd2e9176aeba20c8 (diff) | |
download | linux-bc7b752a7a1c8498f5c48f5b1b63147e32f649dc.tar.gz linux-bc7b752a7a1c8498f5c48f5b1b63147e32f649dc.tar.bz2 linux-bc7b752a7a1c8498f5c48f5b1b63147e32f649dc.zip |
kbuild: remove unneeded dependency for $(DOC_TARGETS)
Commit 415008af3219 ("docs-rst: convert lsm from DocBook to ReST")
stopped using if_changed_rule. There is no more users of if_changed*
for the doc targets. Hence, fixdep is unneeded. Remove the dependency
on scripts_basic.
All the doc targets are phony. The dependency on FORCE is not needed
either.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1575,7 +1575,7 @@ $(help-board-dirs): help-%: DOC_TARGETS := xmldocs latexdocs pdfdocs htmldocs epubdocs cleandocs \ linkcheckdocs dochelp refcheckdocs PHONY += $(DOC_TARGETS) -$(DOC_TARGETS): scripts_basic FORCE +$(DOC_TARGETS): $(Q)$(MAKE) $(build)=Documentation $@ # Misc |