diff options
Diffstat (limited to 'documentation')
| -rw-r--r-- | documentation/Makefile | 8 | ||||
| -rw-r--r-- | documentation/blocks.man | 26 |
2 files changed, 33 insertions, 1 deletions
diff --git a/documentation/Makefile b/documentation/Makefile index 9063f27fb..ba8a1f0d3 100644 --- a/documentation/Makefile +++ b/documentation/Makefile @@ -214,7 +214,7 @@ IMAGEFILES = \ MANPAGES = fltk.$(CAT3EXT) fltk-config.$(CAT1EXT) fluid.$(CAT1EXT) \ - checkers.$(CAT6EXT) sudoku.$(CAT6EXT) + blocks.$(CAT6EXT) checkers.$(CAT6EXT) sudoku.$(CAT6EXT) all: $(MANPAGES) @@ -253,11 +253,15 @@ install: $(MANPAGES) install-linux install-osx: -$(MKDIR) $(DESTDIR)$(mandir)/cat6 + $(CP) blocks.$(CAT6EXT) $(DESTDIR)$(mandir)/cat6 + $(CHMOD) 644 $(DESTDIR)$(mandir)/cat6/blocks.$(CAT6EXT) $(CP) checkers.$(CAT6EXT) $(DESTDIR)$(mandir)/cat6 $(CHMOD) 644 $(DESTDIR)$(mandir)/cat6/checkers.$(CAT6EXT) $(CP) sudoku.$(CAT6EXT) $(DESTDIR)$(mandir)/cat6 $(CHMOD) 644 $(DESTDIR)$(mandir)/cat6/sudoku.$(CAT6EXT) -$(MKDIR) $(DESTDIR)$(mandir)/man6 + $(CP) blocks.man $(DESTDIR)$(mandir)/man6/blocks.6 + $(CHMOD) 644 $(DESTDIR)$(mandir)/man6/blocks.6 $(CP) checkers.man $(DESTDIR)$(mandir)/man6/checkers.6 $(CHMOD) 644 $(DESTDIR)$(mandir)/man6/checkers.6 $(CP) sudoku.man $(DESTDIR)$(mandir)/man6/sudoku.6 @@ -274,8 +278,10 @@ uninstall: $(RM) $(DESTDIR)$(mandir)/man3/fltk.3 uninstall-linux uninstall-osx: + $(RM) $(DESTDIR)$(mandir)/cat6/blocks.$(CAT6EXT) $(RM) $(DESTDIR)$(mandir)/cat6/checkers.$(CAT6EXT) $(RM) $(DESTDIR)$(mandir)/cat6/sudoku.$(CAT6EXT) + $(RM) $(DESTDIR)$(mandir)/man6/blocks.6 $(RM) $(DESTDIR)$(mandir)/man6/checkers.6 $(RM) $(DESTDIR)$(mandir)/man6/sudoku.6 diff --git a/documentation/blocks.man b/documentation/blocks.man new file mode 100644 index 000000000..920300708 --- /dev/null +++ b/documentation/blocks.man @@ -0,0 +1,26 @@ +.TH blocks 6 "FLTK Checkers" "15 January 2006" +.SH NAME +blocks \- the fltk block attack! game +.sp +.SH SYNOPSIS +\fIBlocks\fR is a FLTK-based block elimination game. Stacks of +colored blocks move from right to left as you try to eliminate +groups adjacent blocks by clicking on them. As the game +progresses, more colors are added (up to a maximum of 7) and the +blocks move faster and faster. +.SH GAME PLAY +Press the N key to start a game. As the blocks move across the +window, click on groups of two or more blocks to clear them - the +larger the number of adjacent blocks, the greater the score. +Clicking on a blocks containing a dark ball will clear all blocks +of that color, however you will score much fewer points than a +normal click. The game is over when the blocks reach the left +side of the window. +.LP +Press the spacebar to pause the game. +.SH SEE ALSO +fltk(3) +.br +FLTK Web Site, http://www.fltk.org/ +.SH AUTHOR +Michael R Sweet. |
