fwupd/docs/man/Makefile.am
Richard Hughes a3acd7f711 Add support for updating USB devices with DFU
This adds a private libdfu library and also a small utility program called
dfu-tool.
2015-11-12 17:32:48 +00:00

32 lines
505 B
Makefile

man_MANS_DIST = \
dfu-tool.1 \
fwupdmgr.1
EXTRA_DIST = \
dfu-tool.sgml \
fwupdmgr.sgml \
$(man_MANS_DIST)
man_MANS = \
$(man_MANS_DIST)
fwupdmgr.1: fwupdmgr.sgml
$(AM_V_GEN) \
docbook2man $? > /dev/null
dfu-tool.1: dfu-tool.sgml
$(AM_V_GEN) \
docbook2man $? > /dev/null
MAINTAINERCLEANFILES = \
manpage.links \
manpage.log \
manpage.refs \
$(man_MANS)
clean-local :
rm -f *~
rm -f *.1
rm -f manpage.*
-include $(top_srcdir)/git.mk