File: Makefile.am

package info (click to toggle)
evtest 1%3A1.35-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, trixie
  • size: 144 kB
  • sloc: ansic: 1,115; makefile: 18; sh: 7
file content (25 lines) | stat: -rw-r--r-- 412 bytes parent folder | download | duplicates (6)
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

bin_PROGRAMS = evtest
man_pages_src = evtest.txt

EXTRA_DIST = INSTALL

# man page generation.
if HAVE_DOCTOOLS
man_pages = $(man_pages_src:.txt=.1)

SUFFIXES = .1 .txt .xml

.xml.1:
	@$(XMLTO) man $<

.txt.xml:
	@$(ASCIIDOC) -b docbook -d manpage -o $@ $<

dist_man_MANS = $(man_pages)

EXTRA_DIST += $(man_pages_src) $(man_pages)
CLEANFILES = $(dist_man_MANS)
MAINTAINERCLEANFILES = $(man_pages) *.xml
endif