2011-10-16 02:32:04 +04:00
|
|
|
# To pass additional parameters for asciidoc
|
|
|
|
ASCIIDOC=asciidoc
|
2009-04-28 23:10:20 +04:00
|
|
|
|
2012-04-12 18:01:10 +04: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 23:10:20 +04:00
|
|
|
|
2009-03-07 19:02:17 +03:00
|
|
|
hacking-howto.html: hacking-howto
|
2011-10-16 02:32:04 +04:00
|
|
|
$(ASCIIDOC) -a toc -n $<
|
2009-03-07 19:02:17 +03:00
|
|
|
|
2012-02-17 00:39:34 +04:00
|
|
|
i3bar-protocol.html: i3bar-protocol
|
|
|
|
$(ASCIIDOC) -a toc -n $<
|
|
|
|
|
2009-04-28 23:10:20 +04:00
|
|
|
debugging.html: debugging
|
2011-10-16 02:32:04 +04:00
|
|
|
$(ASCIIDOC) -n $<
|
2009-04-28 23:10:20 +04:00
|
|
|
|
2012-02-12 15:17:03 +04:00
|
|
|
debugging-release-version.html: debugging-release-version
|
|
|
|
$(ASCIIDOC) -n $<
|
|
|
|
|
2009-05-16 19:32:36 +04:00
|
|
|
userguide.html: userguide
|
2011-10-16 02:32:04 +04:00
|
|
|
$(ASCIIDOC) -a toc -n $<
|
2009-03-16 01:15:16 +03:00
|
|
|
|
2011-09-24 20:20:36 +04:00
|
|
|
testsuite.html: testsuite
|
2011-10-16 02:32:04 +04:00
|
|
|
$(ASCIIDOC) -a toc -n $<
|
2011-09-24 20:20:36 +04:00
|
|
|
|
2010-03-12 05:05:42 +03:00
|
|
|
ipc.html: ipc
|
2011-10-16 02:32:04 +04:00
|
|
|
$(ASCIIDOC) -a toc -n $<
|
2010-03-12 05:05:42 +03:00
|
|
|
|
2010-03-16 01:04:32 +03:00
|
|
|
multi-monitor.html: multi-monitor
|
2011-10-16 02:32:04 +04:00
|
|
|
$(ASCIIDOC) -a toc -n $<
|
2010-03-16 01:04:32 +03:00
|
|
|
|
2010-05-27 22:21:17 +04:00
|
|
|
wsbar.html: wsbar
|
2011-10-16 02:32:04 +04:00
|
|
|
$(ASCIIDOC) -a toc -n $<
|
2010-05-27 22:21:17 +04:00
|
|
|
|
2009-03-16 01:15:16 +03:00
|
|
|
clean:
|
2012-04-12 18:01:10 +04:00
|
|
|
rm -f ${ASCIIDOC_TARGETS}
|