From 720b89c0792cdc6f0417cafcefa6923ab6237eef Mon Sep 17 00:00:00 2001 From: Star Taylor Date: Wed, 15 Jun 2016 21:48:03 -0400 Subject: [PATCH] add a quick install in a nutshell to top level --- INSTALL | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 INSTALL diff --git a/INSTALL b/INSTALL new file mode 100644 index 000000000..a6dd6f45a --- /dev/null +++ b/INSTALL @@ -0,0 +1,20 @@ +This is a fairly typical autotools package. In a nutshell, if you're using +a roughly Unix-ish environment: + + 0.) autoreconf -i + You only need this if you've fetched this package from the repo + and lack ./configure in the top-level source directory. + + 1.) ./configure + Want plenty more options than you need? ./configure --help + + 2.) make + This should create a ./schismtracker binary, which you can + move around to wherever it makes you happiest. + + 3.) make install + If you want it installed! You likely want sudo for this. + + 4.) happy tracking! + +For more detailed instructions, peruse the files in the 'docs' directory.