]> granicus.if.org Git - file/commitdiff
I probably wouldn't remember all this next time, so writing it down.
authorkim <kim>
Tue, 18 Feb 2014 18:51:51 +0000 (18:51 +0000)
committerkim <kim>
Tue, 18 Feb 2014 18:51:51 +0000 (18:51 +0000)
README.DEVELOPER [new file with mode: 0644]

diff --git a/README.DEVELOPER b/README.DEVELOPER
new file mode 100644 (file)
index 0000000..73e854b
--- /dev/null
@@ -0,0 +1,40 @@
+= How to get started developing
+
+@(#) $File$
+
+== Auto files
+
+After checking out the source, run the following:
+
+       libtoolize
+       aclocal
+       autoheader
+       automake --add-missing
+       autoconf
+       ./configure
+
+== Installing dependencies
+
+If your platform doesn't have the above tools, install the following
+packages first.
+
+=== Debian
+
+       apt-get install \
+           autoconf \
+           automake \
+           autotools-dev \
+           build-essentials \
+           libltdl-dev \
+           libtool \
+           libtool-doc \
+
+=== Mac OS X (MacPorts)
+
+       port install \
+           autoconf \
+           automake \
+           libtool \
+
+Note that `libtoolize` is called `glibtoolize`.
+