File: Makefile.am

package info (click to toggle)
snapper 0.2.4-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,576 kB
  • ctags: 2,049
  • sloc: cpp: 15,605; sh: 11,424; ansic: 1,401; makefile: 287; python: 159
file content (30 lines) | stat: -rw-r--r-- 512 bytes parent folder | download
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
#
# Makefile.am for snapper/doc
#

man_MANS = snapper.8 snapperd.8 snapper-configs.5

if HAVE_PAM
man_MANS += pam_snapper.8
endif

if HAVE_ZYPP
man_MANS += snapper-zypp-plugin.conf.5 snapper-zypp-plugin.8
endif

.xml.5: .xml
	$(XSLTPROC) --nonet manpages.xsl $<

.xml.8: .xml
	$(XSLTPROC) --nonet manpages.xsl $<

html: $(man_MANS:%.5=%.html) $(man_MANS:%.8=%.html)

.xml.html: .xml
	$(XSLTPROC) --nonet html.xsl $< > $@

EXTRA_DIST = dbus-protocol.txt manpages.xsl html.xsl

clean-local:
	rm -f *.{5,8} *.html