summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Ravnborg <sam@ravnborg.org>2002-07-24 19:34:53 -0700
committerLinus Torvalds <torvalds@home.transmeta.com>2002-07-24 19:34:53 -0700
commit6eebabfa884aebccd94d09394aaae967e5f23237 (patch)
tree8ef1bef0c1a4d71383993a1ed9d512509e00585b
parent1a2e2c02bee5ea38adf57d3c4f972633a995fb11 (diff)
[PATCH] docbook: Call docbook makefile with -f [9/9]
The rewritten makefile for DocBook requires that working directory is $(TOPDIR) therefore use -f Documentation/DocBook/Makefile to invoke the docbook makefile.
-rw-r--r--Makefile10
1 files changed, 4 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index c4241aac9473..c9db249a22a0 100644
--- a/Makefile
+++ b/Makefile
@@ -650,7 +650,7 @@ clean: archclean
-name .\*.tmp -o -name .\*.d \) -type f -print \
| grep -v lxdialog/ | xargs rm -f
@rm -f $(CLEAN_FILES)
- @$(MAKE) -C Documentation/DocBook clean
+ @$(MAKE) -f Documentation/DocBook/Makefile clean
mrproper: clean archmrproper
@echo 'Making mrproper'
@@ -659,7 +659,7 @@ mrproper: clean archmrproper
-type f -print | xargs rm -f
@rm -f $(MRPROPER_FILES)
@rm -rf $(MRPROPER_DIRS)
- @$(MAKE) -C Documentation/DocBook mrproper
+ @$(MAKE) -f Documentation/DocBook/Makefile mrproper
distclean: mrproper
@echo 'Making distclean'
@@ -732,10 +732,8 @@ help:
# Documentation targets
# ---------------------------------------------------------------------------
-
-sgmldocs psdocs pdfdocs htmldocs:
- @$(MAKE) -C Documentation/DocBook $@
-
+sgmldocs psdocs pdfdocs htmldocs: scripts
+ @$(MAKE) -f Documentation/DocBook/Makefile $@
# Scripts to check various things for consistency
# ---------------------------------------------------------------------------