mirror of
https://git.proxmox.com/git/fwupd
synced 2025-06-04 00:40:58 +00:00

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
27 lines
393 B
Makefile
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
|