blob: e5d73113ef2a0166d6366b8f2e11b85f9f2421dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
NULL =
INSTALL_STUFF = \
vim-policy.html/ \
vim-policy.txt \
$(NULL)
all: html text
html: vim-policy.html/index.html
text: vim-policy.txt
export LC_ALL=C.UTF-8
vim-policy.html/index.html: vim-policy.xml *.xml
docbook2html $< -o $(dir $@)
vim-policy.txt: vim-policy.xml *.xml
docbook2txt $<
clean:
$(RM) -rf $(INSTALL_STUFF)
.PHONY: html text
|