summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorGravatar Mike Burns <mike@mike-burns.com>2013-07-27 00:34:01 -0400
committerGravatar Mike Burns <mike@mike-burns.com>2013-07-27 01:06:30 -0400
commit4f5259cc5b6273f509602434747f702d16b71b27 (patch)
treeb56878a67451c527ec454c81093748236a1348b7 /README.md
parentca7b0cd7961e87bb618a4c8376f87253ffd894f2 (diff)
Re-write using GNU autoconf and automake
Replace the `Makefile` with a `configure.ac` and a set of `Makefile.am`.
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index f75f57b..032df4d 100644
--- a/README.md
+++ b/README.md
@@ -11,13 +11,13 @@ The programs provided are `rcup`, `mkrc`, and `lsrc`.
Installation
------------
-You can install into `/usr/local` using a normal `make install`:
+This uses the standard GNU autotools, so it's the normal dance:
- sudo make install
+ ./configure && \
+ make && \
+ make install
-The `PREFIX` can be changed as needed:
-
- make install PREFIX=$HOME/.local
+For more, see `INSTALL`.
Programs
--------
@@ -33,7 +33,7 @@ Programs
Support
-------
-Pull requests welcome.
+Pull requests welcome; see `DEVELOPERS.MD`.
License
-------