Build target names shortened.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11819 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2004-01-20 23:31:14 +00:00
parent 4d671efb4a
commit f03f757ea8
1 changed files with 7 additions and 7 deletions

View File

@ -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 &&\