aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMasahiro Yamada2014-02-04 19:52:50 -0600
committerTom Rini2014-02-19 10:10:04 -0600
commit8fac9c7b7de617c52738818663adbbeb2021f132 (patch)
tree18be88b8f1be3c448143444dc4db241ee39d4428 /Makefile
parent2c92b1d6738c35236afaa3544d196a0d5ececa87 (diff)
downloadu-boot-8fac9c7b7de617c52738818663adbbeb2021f132.tar.gz
u-boot-8fac9c7b7de617c52738818663adbbeb2021f132.tar.xz
u-boot-8fac9c7b7de617c52738818663adbbeb2021f132.zip
kernel-doc: move kernel-doc tools to scripts/
tools/kernel-doc/docproc.c and tools/kernel-doc/kernel-doc are files imported from Linux Kernel. They originally resided under scripts/ directory in Linux Kernel. This commit moves them to the original location. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 7 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index a3979ec061..75fd7f32ac 100644
--- a/Makefile
+++ b/Makefile
@@ -1149,9 +1149,6 @@ $(TIMESTAMP_FILE):
1149env: depend scripts_basic 1149env: depend scripts_basic
1150 $(Q)$(MAKE) $(build)=tools/$@ 1150 $(Q)$(MAKE) $(build)=tools/$@
1151 1151
1152xmldocs pdfdocs psdocs htmldocs mandocs: tools/kernel-doc/docproc
1153 $(Q)$(MAKE) U_BOOT_VERSION=$(U_BOOT_VERSION) $(build)=doc/DocBook $@
1154
1155tools-all: HOST_TOOLS_ALL=y 1152tools-all: HOST_TOOLS_ALL=y
1156tools-all: env tools ; 1153tools-all: env tools ;
1157 1154
@@ -1259,6 +1256,13 @@ backup:
1259 F=`basename $(TOPDIR)` ; cd .. ; \ 1256 F=`basename $(TOPDIR)` ; cd .. ; \
1260 gtar --force-local -zcvf `LC_ALL=C date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F 1257 gtar --force-local -zcvf `LC_ALL=C date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
1261 1258
1259
1260# Documentation targets
1261# ---------------------------------------------------------------------------
1262%docs: scripts_basic FORCE
1263 $(Q)$(MAKE) $(build)=scripts build_docproc
1264 $(Q)$(MAKE) $(build)=doc/DocBook $@
1265
1262# Dummies... 1266# Dummies...
1263PHONY += prepare scripts 1267PHONY += prepare scripts
1264prepare: ; 1268prepare: ;