File: Makefile.am

package info (click to toggle)
snapper 0.10.6-1.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,072 kB
  • sloc: cpp: 24,846; ansic: 1,466; sh: 1,410; makefile: 514; python: 127; ruby: 90
file content (38 lines) | stat: -rw-r--r-- 605 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
35
36
37
38
#
# Makefile.am for snapper/doc
#

if ENABLE_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

if ENABLE_ROLLBACK
man_MANS += mksubvolume.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 $< > $@

endif

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

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