fluxbox/doc/asciidoc/Makefile

20 lines
292 B
Makefile
Raw Normal View History

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