wineboot: Add a manpage.
This commit is contained in:
parent
1c7d349f26
commit
8d821bd933
|
@ -269,6 +269,7 @@ programs/rpcss/irot.h
|
|||
programs/rpcss/irot_s.c
|
||||
programs/services/svcctl.h
|
||||
programs/services/svcctl_s.c
|
||||
programs/wineboot/wineboot.man
|
||||
programs/winecfg/winecfg.man
|
||||
programs/winedbg/dbg.tab.c
|
||||
programs/winedbg/dbg.tab.h
|
||||
|
|
|
@ -31,4 +31,16 @@ RC_SRCS = \
|
|||
wineboot_Uk.rc \
|
||||
wineboot_Zh.rc
|
||||
|
||||
MANPAGES = wineboot.man
|
||||
|
||||
@MAKE_PROG_RULES@
|
||||
|
||||
all: $(MANPAGES)
|
||||
|
||||
install-man-pages:: $(MANPAGES) $(DESTDIR)$(mandir)/man$(prog_manext)
|
||||
$(INSTALL_DATA) wineboot.man $(DESTDIR)$(mandir)/man$(prog_manext)/wineboot.$(prog_manext)
|
||||
|
||||
@WOW64_DISABLE@ install install-lib:: install-man-pages
|
||||
|
||||
uninstall::
|
||||
$(RM) $(DESTDIR)$(mandir)/man$(prog_manext)/wineboot.$(prog_manext)
|
||||
|
|
|
@ -0,0 +1,31 @@
|
|||
.TH WINEBOOT 1 "November 2010" "@PACKAGE_STRING@" "Wine Programs"
|
||||
.SH NAME
|
||||
wineboot \- perform Wine initialization, startup, and shutdown tasks
|
||||
.SH SYNOPSIS
|
||||
.BR "wineboot "\fI[OPTION]\fR "
|
||||
.SH DESCRIPTION
|
||||
.B wineboot
|
||||
performs the initial creation and setup of a WINEPREFIX for wine(1). It can also perform a simulated
|
||||
reboot or shutdown to any applications running within the WINEPREFIX.
|
||||
.SH "SEE ALSO"
|
||||
.BR wine(1)
|
||||
.SH "OPTIONS"
|
||||
.IP \-h,\ \-\-help
|
||||
Display help message.
|
||||
.IP \-e,\ \-\-end\-session
|
||||
End the current session cleanly.
|
||||
.IP \-f,\ \-\-force
|
||||
Force exit for processes that don't exit cleanly
|
||||
.IP \-i,\ \-\-init
|
||||
Initialize the WINEPREFIX.
|
||||
.IP \-k,\ \-\-kill
|
||||
Kill running processes without any cleanup.
|
||||
.IP \-r,\ \-\-restart
|
||||
Restart only, don't do normal startup operations.
|
||||
.IP \-s,\ \-\-shutdown
|
||||
Shutdown only, don't reboot.
|
||||
.IP \-u,\ \-\-update
|
||||
Update the WINEPREFIX.
|
||||
|
||||
.SH "SEE ALSO"
|
||||
.BR wine(1)
|
Loading…
Reference in New Issue