mirror of
https://gitlab.com/virt-viewer/virt-viewer.git
synced 2025-01-06 13:17:45 +03:00
81c2c3bfec
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.
19 lines
240 B
Makefile
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
|