summaryrefslogtreecommitdiff
path: root/Documentation/kdbus/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation/kdbus/Makefile')
-rw-r--r--Documentation/kdbus/Makefile44
1 files changed, 0 insertions, 44 deletions
diff --git a/Documentation/kdbus/Makefile b/Documentation/kdbus/Makefile
deleted file mode 100644
index 8caffe565..000000000
--- a/Documentation/kdbus/Makefile
+++ /dev/null
@@ -1,44 +0,0 @@
-DOCS := \
- kdbus.xml \
- kdbus.bus.xml \
- kdbus.connection.xml \
- kdbus.endpoint.xml \
- kdbus.fs.xml \
- kdbus.item.xml \
- kdbus.match.xml \
- kdbus.message.xml \
- kdbus.name.xml \
- kdbus.policy.xml \
- kdbus.pool.xml
-
-XMLFILES := $(addprefix $(obj)/,$(DOCS))
-MANFILES := $(patsubst %.xml, %.7, $(XMLFILES))
-HTMLFILES := $(patsubst %.xml, %.html, $(XMLFILES))
-
-XMLTO_ARGS := -m $(srctree)/$(src)/stylesheet.xsl --skip-validation
-
-quiet_cmd_db2man = MAN $@
- cmd_db2man = xmlto man $(XMLTO_ARGS) -o $(obj) $<
-%.7: %.xml
- @(which xmlto > /dev/null 2>&1) || \
- (echo "*** You need to install xmlto ***"; \
- exit 1)
- $(call cmd,db2man)
-
-quiet_cmd_db2html = HTML $@
- cmd_db2html = xmlto html-nochunks $(XMLTO_ARGS) -o $(obj) $<
-%.html: %.xml
- @(which xmlto > /dev/null 2>&1) || \
- (echo "*** You need to install xmlto ***"; \
- exit 1)
- $(call cmd,db2html)
-
-mandocs: $(MANFILES)
-
-htmldocs: $(HTMLFILES)
-
-clean-files := $(MANFILES) $(HTMLFILES)
-
-# we don't support other %docs targets right now
-%docs:
- @true