Move phony target declaration to the bottom of the file; add distclean target.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26492 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-04-22 10:19:30 +00:00
parent 6c2394f0b4
commit b670c39ced
1 changed files with 2 additions and 1 deletions

View File

@ -30,7 +30,6 @@ endif
HTML_STYLESHEET ?= ../default.css
# This is the main target...
.PHONY: all html-chunked html-single xmllint
all: html-chunked html-single
html-chunked: $(HTMLDIR)/index.html
html-single: $(HTMLFILE)
@ -77,3 +76,5 @@ $(filter-out main.xml, $(patsubst ../en/%,%, $(wildcard ../en/*.xml))):
distclean:
rm -f main.xml
rm -f `find *.xml -type l`;
.PHONY: all html-chunked html-single xmllint distclean