summaryrefslogtreecommitdiffstats
path: root/DOCS
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-01-20 23:31:14 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-01-20 23:31:14 +0000
commitf03f757ea83676bcae9d8cffd362087463ff96de (patch)
tree188bfd811f198f0ecf978f5bd27890971f40e6f8 /DOCS
parent4d671efb4abcc8c1b6669f295f54e1042bd91b98 (diff)
downloadmpv-f03f757ea83676bcae9d8cffd362087463ff96de.tar.bz2
mpv-f03f757ea83676bcae9d8cffd362087463ff96de.tar.xz
Build target names shortened.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11819 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'DOCS')
-rw-r--r--DOCS/xml/Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/DOCS/xml/Makefile b/DOCS/xml/Makefile
index 74230e2ef1..9a6e730deb 100644
--- a/DOCS/xml/Makefile
+++ b/DOCS/xml/Makefile
@@ -10,22 +10,22 @@ HTML_CHUNKED = ../HTML
HTML_SINGLE = ../HTML-single
.PHONY: all
-all: build-html-chunked build-html-single
+all: html-chunked html-single
.PHONY: help
help:
@echo "Targets:"
@echo "********"
@echo "all : Build everything (default)."
- @echo "build-html-single : Build HTML documentation (single file)."
- @echo "build-html-chunked: Build HTML documentation (multiple files)."
+ @echo "html-single : Build HTML documentation (single file)."
+ @echo "html-chunked : Build HTML documentation (multiple files)."
@echo "clean-html-single : Purge the 'HTML-single' directory."
@echo "clean-html-chunked: Purge the 'HTML' directory."
@echo "clean : Purge the 'HTML' and 'HTML-single' directories."
@echo "distclean : Remove ALL generated files."
-.PHONY: build-html-chunked
-build-html-chunked: xsltproc.sh xmllint.sh
+.PHONY: html-chunked
+html-chunked: xsltproc.sh xmllint.sh
@test -d $(HTML_CHUNKED) || mkdir $(HTML_CHUNKED)
@for dir in $(SUBDIRS); do\
test -f $$dir/Makefile &&\
@@ -33,8 +33,8 @@ build-html-chunked: xsltproc.sh xmllint.sh
if $(MAKE) HTMLDIR=../$(HTML_CHUNKED)/$$dir -C $$dir html-chunked; then :; else exit 1; fi;\
done
-.PHONY: build-html-single
-build-html-single: xsltproc.sh xmllint.sh
+.PHONY: html-single
+html-single: xsltproc.sh xmllint.sh
@test -d $(HTML_SINGLE) || mkdir $(HTML_SINGLE)
@for dir in $(SUBDIRS); do\
test -f $$dir/Makefile &&\