aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorNathan Vance <nathav63@gmail.com>2015-07-27 19:15:59 -0400
committerNathan Vance <nathav63@gmail.com>2015-07-27 19:15:59 -0400
commit06818a49b337ef5d3277ebf6ed0b3f13a88239d3 (patch)
tree500f311c25ac68fc9a3b8429bf0747572e4d3e69 /README
parentfixed bugs and formatting errors (diff)
download7w-06818a49b337ef5d3277ebf6ed0b3f13a88239d3.tar.gz
7w-06818a49b337ef5d3277ebf6ed0b3f13a88239d3.tar.bz2
7w-06818a49b337ef5d3277ebf6ed0b3f13a88239d3.zip
Updated to work with gcc 5.X
Diffstat (limited to 'README')
-rw-r--r--README19
1 files changed, 17 insertions, 2 deletions
diff --git a/README b/README
index d8f9097..280c012 100644
--- a/README
+++ b/README
@@ -1,2 +1,17 @@
-7w - 7 Wonders for the linux command line
-This is game 2 in a series of games for the linux command line. It is not yet usable. For a more feature complete command line strategy game, check out my other repository 'cettlers'.
+7w
+
+This game is based on the board / card game 7 Wonders. The user interface is entirely made of ascii characters.
+7w was written because linux has a lack of command line strategy games; 7w is intended to be the second in a line of popular board games for the linux/mac command line, the first of which was cettlers, also in my repository.
+
+To install,
+$ cd /directory/with/*.c/files/
+$ cd /Release/
+$ make
+$ cp 7w /directory/in/your/path/
+
+To run execute cettlers simply run
+$ 7w
+
+Or, if you refuse to copy the executable into your path, run
+$ ./7w
+while in the directory containing the compiled binary file.
bgstack15