aboutsummaryrefslogtreecommitdiff
path: root/doc/asciidoc/es/Makefile
diff options
context:
space:
mode:
authorMathias Gumz <akira at fluxbox dot org>2008-08-20 21:03:25 (GMT)
committerMathias Gumz <akira at fluxbox dot org>2008-08-20 21:03:25 (GMT)
commit9dec17611fba493b028fb6664231822a07b3c4c1 (patch)
tree27aaff10c854e6971ec602a2b4198742d18dc3d3 /doc/asciidoc/es/Makefile
parentd287e7048b2345606fdf59c188b99a93e6787b30 (diff)
downloadfluxbox-9dec17611fba493b028fb6664231822a07b3c4c1.zip
fluxbox-9dec17611fba493b028fb6664231822a07b3c4c1.tar.bz2
split documenation into different directories
Diffstat (limited to 'doc/asciidoc/es/Makefile')
-rw-r--r--doc/asciidoc/es/Makefile22
1 files changed, 22 insertions, 0 deletions
diff --git a/doc/asciidoc/es/Makefile b/doc/asciidoc/es/Makefile
new file mode 100644
index 0000000..1bfd276
--- /dev/null
+++ b/doc/asciidoc/es/Makefile
@@ -0,0 +1,22 @@
1#
2# create manpages from the asciidoc files
3#
4
5SRC1 = fluxbox.txt
6SRC5 =
7
8MAN = $(SRC1:.txt=.1) $(SRC5:.txt=.5)
9
10all : $(MAN)
11clean:
12 rm -fv $(MAN)
13
14%.xml : %.txt
15 asciidoc -b docbook -d manpage -o $@ $<
16
17%.1 : %.xml
18 xmlto man $<
19
20%.5 : %.xml
21 xmlto man $<
22