gri3-wm/docs/Makefile

37 lines
798 B
Makefile
Raw Normal View History

# To pass additional parameters for asciidoc
ASCIIDOC=asciidoc
2009-04-28 21:10:20 +02:00
ASCIIDOC_TARGETS:=hacking-howto.html debugging.html debugging-release-version.html userguide.html ipc.html multi-monitor.html wsbar.html testsuite.html i3bar-protocol.html
all: ${ASCIIDOC_TARGETS}
2009-04-28 21:10:20 +02:00
2009-03-07 17:02:17 +01:00
hacking-howto.html: hacking-howto
$(ASCIIDOC) -a toc -n $<
2009-03-07 17:02:17 +01:00
2012-02-16 21:39:34 +01:00
i3bar-protocol.html: i3bar-protocol
$(ASCIIDOC) -a toc -n $<
2009-04-28 21:10:20 +02:00
debugging.html: debugging
$(ASCIIDOC) -n $<
2009-04-28 21:10:20 +02:00
debugging-release-version.html: debugging-release-version
$(ASCIIDOC) -n $<
userguide.html: userguide
$(ASCIIDOC) -a toc -n $<
2011-09-24 18:20:36 +02:00
testsuite.html: testsuite
$(ASCIIDOC) -a toc -n $<
2011-09-24 18:20:36 +02:00
ipc.html: ipc
$(ASCIIDOC) -a toc -n $<
multi-monitor.html: multi-monitor
$(ASCIIDOC) -a toc -n $<
wsbar.html: wsbar
$(ASCIIDOC) -a toc -n $<
clean:
rm -f ${ASCIIDOC_TARGETS}