virt-viewer/man/Makefile.am
Marc-André Lureau 81c2c3bfec build-sys: use git.mk to generate gitignore
This makefile is just fantastic, it forces you into good practices,
support various build targets (my windows builddir ignore the right
files etc..)

The more I use it, the more I like it.
2012-03-30 14:48:13 +02:00

19 lines
240 B
Makefile

NULL =
man_MANS = \
remote-viewer.1 \
virt-viewer.1 \
$(NULL)
EXTRA_DIST = \
remote-viewer.pod \
virt-viewer.pod \
$(NULL)
DISTCLEANFILES = $(man_MANS)
%.1: %.pod
pod2man $< > $@
-include $(top_srcdir)/git.mk