From b670c39cedd216b15863f4e09449209bb5f0f4ed Mon Sep 17 00:00:00 2001 From: diego Date: Tue, 22 Apr 2008 10:19:30 +0000 Subject: [PATCH] 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 --- DOCS/xml/Makefile.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/DOCS/xml/Makefile.inc b/DOCS/xml/Makefile.inc index 8ac98b86fc..132ac3b3a1 100644 --- a/DOCS/xml/Makefile.inc +++ b/DOCS/xml/Makefile.inc @@ -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