diff options
author | Ryan Kavanagh <rak@debian.org> | 2013-03-07 16:41:02 -0500 |
---|---|---|
committer | Ryan Kavanagh <rak@debian.org> | 2013-03-07 17:54:42 -0500 |
commit | b1d02164f2fc3993004b28c17ca6f1fb79998431 (patch) | |
tree | e52214a0d5d3ee8e8c094975ae77cf17f3a6ddda /README.md | |
parent | Add install targets to Makefile (diff) |
Release nmm version 1.0~beta11.0_beta1
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..0fedaef --- /dev/null +++ b/README.md @@ -0,0 +1,39 @@ +NMM, TMM, and TWMM +================== + +`NMM`, `TMM`, and `TWMM` are a C and curses implementation of the +popular games Nine Man Morris, Three Man Morris, and Twelve Man +Morris. + +Compiling +--------- + +To compile, you will need a C compiler, and a copy of the ncurses +header files available. Then a simple + + make + +will cause `nmm` and company to be compiled (in fact, `tmm` and `twmm` +are no more than symlinks to `nmm`, displaying the correct game based +on the basename). To install `nmm`, go + + make install + +which will install under the prefix of `/usr/local` (see `Makefile` +for details). If this isn't the desired location, you can override +this setting with + + make install -ePREFIX=/your/prefix install + +Man pages for `nmm` and company will be installed under +`$(PREFIX)/man6/` and the `whatis` database will be updated with a +call to `/usr/libexec/makewhatisdb`. If you wish to change this, +please override the `MANPATH` and `MAKEWHATIS` variables when you call +the install target. + +LICENSE +------- + +`nmm` and company are distributed Copyright (C) 2013 Ryan Kavanagh +<rak@debian.org> and are distributed under a 3-clause revised-BSD +license. Please see the file `LICENSE` for details. |