From: kim Date: Tue, 18 Feb 2014 18:51:51 +0000 (+0000) Subject: I probably wouldn't remember all this next time, so writing it down. X-Git-Tag: FILE5_18~61 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dcfaba6baf7e96f9ecb84c57f2f559e8cbda8dba;p=file I probably wouldn't remember all this next time, so writing it down. --- diff --git a/README.DEVELOPER b/README.DEVELOPER new file mode 100644 index 00000000..73e854b2 --- /dev/null +++ b/README.DEVELOPER @@ -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`. +