winemine: Add a manpage.
This commit is contained in:
parent
9517305c03
commit
82415fff99
|
@ -273,6 +273,7 @@ programs/winedbg/dbg.tab.c
|
||||||
programs/winedbg/dbg.tab.h
|
programs/winedbg/dbg.tab.h
|
||||||
programs/winedbg/debug.yy.c
|
programs/winedbg/debug.yy.c
|
||||||
programs/winedbg/winedbg.man
|
programs/winedbg/winedbg.man
|
||||||
|
programs/winemine/winemine.man
|
||||||
programs/winetest/*_test.exe
|
programs/winetest/*_test.exe
|
||||||
programs/winetest/*_test.rc
|
programs/winetest/*_test.rc
|
||||||
programs/winetest/build.nfo
|
programs/winetest/build.nfo
|
||||||
|
|
|
@ -33,6 +33,18 @@ RC_SRCS = \
|
||||||
Zh.rc \
|
Zh.rc \
|
||||||
rsrc.rc
|
rsrc.rc
|
||||||
|
|
||||||
|
MANPAGES = winemine.man
|
||||||
|
|
||||||
SVG_SRCS = winemine.svg
|
SVG_SRCS = winemine.svg
|
||||||
|
|
||||||
@MAKE_PROG_RULES@
|
@MAKE_PROG_RULES@
|
||||||
|
|
||||||
|
all: $(MANPAGES)
|
||||||
|
|
||||||
|
install-man-pages:: $(MANPAGES) $(DESTDIR)$(mandir)/man$(prog_manext)
|
||||||
|
$(INSTALL_DATA) winemine.man $(DESTDIR)$(mandir)/man$(prog_manext)/winemine.$(prog_manext)
|
||||||
|
|
||||||
|
@WOW64_DISABLE@ install install-lib:: install-man-pages
|
||||||
|
|
||||||
|
uninstall::
|
||||||
|
$(RM) $(DESTDIR)$(mandir)/man$(prog_manext)/winemine.$(prog_manext)
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
.TH WINEMINE 1 "November 2010" "@PACKAGE_STRING@" "Wine Programs"
|
||||||
|
.SH NAME
|
||||||
|
winemine \- Wine Minesweeper game
|
||||||
|
.SH SYNOPSIS
|
||||||
|
.BR winemine
|
||||||
|
.SH DESCRIPTION
|
||||||
|
.B winemine
|
||||||
|
is the Wine Minesweeper game. The object of the game is to try to find all the hidden mines by
|
||||||
|
uncovering the tiles to see how many mines each tile is adjacent to, without uncovering a mine.
|
||||||
|
.SH "SEE ALSO"
|
||||||
|
.BR wine(1)
|
Loading…
Reference in New Issue