From: Ben Pfaff Date: Sun, 15 Sep 2013 17:38:30 +0000 (-0700) Subject: INSTALL: Add installation instructions. X-Git-Url: https://repo.or.cz/w/fmtools.git/commitdiff_plain/9fdb013dcd964c2e12331c54ae3bd5a06a24e4ee INSTALL: Add installation instructions. Suggested by Andrii Bordunov . --- 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