1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-05 14:42:24 +00:00

- Remove now unnecessary dependency on intermediate directories.

- Update README.maintainers to reflect that the monolithic documentation
  is no longer built in a separate dir (accidentally committed part that
  belongs to the next committed revision).


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30006 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2009-12-13 22:43:37 +00:00
parent 4e09307180
commit 7952f2315e
2 changed files with 4 additions and 4 deletions

View File

@ -26,8 +26,8 @@ help:
@echo "Substitute LANG for one of $(DOC_LANG_ALL)"
html-chunked html-single: xsltproc.sh xmllint.sh
html-chunked: $(HTML_CHUNKED) $(addprefix html-chunked-,$(DOC_LANGS))
html-single: $(HTML_SINGLE) $(addprefix html-single-,$(DOC_LANGS))
html-chunked: $(addprefix html-chunked-,$(DOC_LANGS))
html-single: $(addprefix html-single-,$(DOC_LANGS))
xmllint: xmllint.sh $(addprefix xmllint-,$(DOC_LANG_ALL))

View File

@ -2,9 +2,9 @@ The documentation and its translations reside in subdirectories.
When building the documentation, the toplevel Makefile goes into
the subdirectories listed in the SUBDIRS variable and executes make
in each of those directories to create the HTML documentation
in subdirectories of the 'HTML' and 'HTML-single' directories.
in subdirectories of the 'HTML' directory.
IMPORTANT: Do NOT place sensitive files under 'HTML' or 'HTML-single'!
IMPORTANT: Do NOT place sensitive files under 'HTML'!
It is for generated documentation only.
The whole directory tree is wiped out by the Makefile
when running 'make distclean' or 'make clean'.