all repos — fluxbox @ 2df0e67ca506448996a83b47a3eb77360712f4cc

custom fork of the fluxbox windowmanager

doc/asciidoc/Makefile (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#
# 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 $<