summaryrefslogtreecommitdiff
path: root/Documentation/kdbus/Makefile
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2016-02-22 01:12:47 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2016-02-22 01:12:47 -0300
commit6d461a4fe7896faa1aec5a5417888cf179e46b9f (patch)
tree2e0f1a0b7a5418189c8d53592d33a44d0b356fc9 /Documentation/kdbus/Makefile
parent5c545e1fb127a4b11ddc5f1a5ed066b853dd1a1a (diff)
Linux-libre 4.4.2-gnupck-4.4.2-gnu
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