fwupd/docs/man/Makefile.am
Richard Hughes 63a407ab34 Change the DBus method for installing firmware to 'Install'
It seems a little odd to call it 'Update' when it's being used for downgrading
and reinstalling as well.

As we're making things simpler, just use a single 'install' action in fwupdmgr
rather than 'install', 'update-online', 'update-offline'. We can use the flags
and fallbacks to do the right thing in all cases, and make the typical case
(installing a local file to any matching hardware) simple.

Fixes half of https://github.com/hughsie/fwupd/pull/23
2015-07-22 10:36:00 +01:00

27 lines
393 B
Makefile

man_MANS_DIST = \
fwupdmgr.1
EXTRA_DIST = \
fwupdmgr.sgml \
$(man_MANS_DIST)
man_MANS = \
$(man_MANS_DIST)
fwupdmgr.1: fwupdmgr.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