diff options
| author | Sam Ravnborg <sam@ravnborg.org> | 2002-07-24 19:34:53 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.transmeta.com> | 2002-07-24 19:34:53 -0700 |
| commit | 6eebabfa884aebccd94d09394aaae967e5f23237 (patch) | |
| tree | 8ef1bef0c1a4d71383993a1ed9d512509e00585b | |
| parent | 1a2e2c02bee5ea38adf57d3c4f972633a995fb11 (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-- | Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -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 # --------------------------------------------------------------------------- |
