File: Makefile.am

package info (click to toggle)
oidentd 3.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,324 kB
  • sloc: sh: 4,582; ansic: 4,062; yacc: 477; lex: 341; makefile: 84
file content (28 lines) | stat: -rw-r--r-- 472 bytes parent folder | download | duplicates (2)
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
man_MANS = \
	oidentd.8 \
	oidentd.conf.5 \
	oidentd_masq.conf.5

DISTCLEANFILES = \
	$(man_MANS)

EXTRA_DIST = \
	book \
	$(man_MANS) \
	oidentd.8.adoc \
	oidentd.conf.5.adoc \
	oidentd_masq.conf.5.adoc

SUFFIXES = .adoc

oidentd.8: oidentd.8.adoc
oidentd.conf.5: oidentd.conf.5.adoc
oidentd_masq.conf.5: oidentd_masq.conf.5.adoc

.adoc:
	asciidoctor \
		--backend manpage \
		--doctype manpage \
		-a "sysconfdir=@sysconfdir@" \
		-a "mansource=@PACKAGE_STRING@" \
		$<