1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-09 16:36:15 +00:00
mpv/DOCS/xml/Makefile
diego dc0adf6e20 XML autoconfiguration by Dmitry Baryshkov <lumag@qnc.ru> with some
modifications and improvements by me.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10310 b3059339-0415-0410-9bf9-f77b7e298cf2
2003-06-18 17:37:36 +00:00

41 lines
906 B
Makefile

# Makefile for generating the HTML documentation
# List of subdirectories to be processed.
SUBDIRS = en fr
# Generated HTML files go here.
HTML_TOP = ../HTML
.PHONY: all
all: build-html
.PHONY: help
help:
@echo "Targets:"
@echo "********"
@echo "all : Build everything (same as build-html for now)."
@echo "build-html: Build HTML documentation."
@echo "clean-html: Purge the 'HTML' directory."
@echo "distclean : Remove ALL generated files."
.PHONY: build-html
build-html: xsltproc.sh
test -d $(HTML_TOP) || mkdir $(HTML_TOP)
for d in $(SUBDIRS); do\
test -f $$d/Makefile &&\
(test -d $(HTML_TOP)/$$d || mkdir $(HTML_TOP)/$$d) &&\
if $(MAKE) HTMLDIR=../$(HTML_TOP)/$$d -C $$d; then :; else exit 1; fi;\
done
.PHONY: clean-html
clean-html:
-rm -rf $(HTML_TOP)
.PHONY: distclean
distclean: clean-html
-rm -f html.xsl xsltproc.sh xmllint.sh
xsltproc.sh: configure
./configure