fluxbox/doc/asciidoc/Makefile

24 lines
361 B
Makefile
Raw Normal View History

2008-08-20 06:06:14 +00:00
#
# create manpages from the asciidoc files
#
2008-08-20 18:46:11 +00:00
SRC1 = fluxbox.txt fluxbox.de.txt fluxbox.es.txt \
2008-08-20 06:06:14 +00:00
fluxstyle.txt fluxbox-keys.txt fluxbox-remote.txt
2008-08-20 18:46:11 +00:00
SRC5 = fluxbox-keys.txt
2008-08-20 06:06:14 +00:00
2008-08-20 18:46:11 +00:00
MAN = $(SRC1:.txt=.1) $(SRC5:.txt=.5)
2008-08-20 06:06:14 +00:00
all : $(MAN)
clean:
rm -fv $(MAN)
%.xml : %.txt
asciidoc -b docbook -d manpage -o $@ $<
%.1 : %.xml
xmlto man $<
2008-08-20 18:46:11 +00:00
%.5 : %.xml
xmlto man $<