File: Makefile.am

package info (click to toggle)
libquvi-scripts 0.9.20131130-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 2,828 kB
  • sloc: sh: 11,744; ansic: 2,587; makefile: 226
file content (34 lines) | stat: -rw-r--r-- 612 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
MAN7_TXT=\
  libquvi-scripts.7.txt\
  quvi-modules.7.txt\
  quvi-modules-3rdparty.7.txt

DOC_MAN7=\
  libquvi-scripts.7\
  quvi-modules.7\
  quvi-modules-3rdparty.7

MAN_TXT=$(MAN7_TXT)

ASCIIDOC_OPTS=\
  -f $(top_srcdir)/doc/asciidoc.conf\
  -a pkg_version="$(VERSION)"

if HAVE_A2X
$(DOC_MAN7):
	$(AM_V_GEN)$(A2X) -f manpage --asciidoc-opts="$(ASCIIDOC_OPTS)" \
		-D $(builddir) $(srcdir)/$@.txt
doc: $(DOC_MAN7)
else
doc:
	@echo configure did not find a2x
endif # HAVE_A2X

MOSTLYCLEANFILES=$(DOC_MAN7)
dist_man_MANS=$(DOC_MAN7)

EXTRA_DIST=\
  $(MAN_TXT)\
  footer.txt

# vim: set ts=2 sw=2 tw=72 expandtab: