summaryrefslogtreecommitdiff
path: root/DEVELOPERS.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 /DEVELOPERS.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 'DEVELOPERS.md')
-rw-r--r--DEVELOPERS.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/DEVELOPERS.md b/DEVELOPERS.md
new file mode 100644
index 0000000..0253a7f
--- /dev/null
+++ b/DEVELOPERS.md
@@ -0,0 +1,13 @@
+Developers
+==========
+
+GNU autoconf & automake
+-----------------------
+
+This project uses GNU autoconf and automake for installation and
+building. To regenerate everything from first principles (`configure.ac`
+and `**/Makefile.am`), run these commands:
+
+ aclocal && \
+ automake --add-missing --copy && \
+ autoconf