From 9fdb013dcd964c2e12331c54ae3bd5a06a24e4ee Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Sun, 15 Sep 2013 10:38:30 -0700 Subject: [PATCH] INSTALL: Add installation instructions. Suggested by Andrii Bordunov . --- INSTALL | 15 +++++++++++++++ Makefile.am | 4 +++- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 INSTALL diff --git a/INSTALL b/INSTALL new file mode 100644 index 0000000..4f0bac5 --- /dev/null +++ b/INSTALL @@ -0,0 +1,15 @@ +You may build directly from Git or use a distribution tarball. +If you build from Git, make sure you have Autoconf and Automake +installed, and run: + + autoreconf -i + +Afterward, or if you are starting from a distribution tarball, +run: + + ./configure + make + +To install the executables, run as superuser: + + make install diff --git a/Makefile.am b/Makefile.am index a8798eb..9c85951 100644 --- a/Makefile.am +++ b/Makefile.am @@ -11,7 +11,9 @@ EXTRA_DIST = \ debian/control \ debian/copyright \ debian/rules \ - debian/source/format + debian/source/format \ + INSTALL \ + README #### The rest of this file is just for the testsuite. It is just #### boilerplate from the Autoconf manual describing how to use -- 2.11.4.GIT