Make the project buildable with GNAT and add the building instructions.
3 files changed, 36 insertions(+), 2 deletions(-)

A => Makefile
M README.rst
M twit.gpr
A => Makefile +5 -0
@@ 0,0 1,5 @@ 
+
+twit:
+	gnatmake -P twit
+
+.PHONY: twit

          
M README.rst +30 -0
@@ 16,6 16,36 @@ Beautiful Ladybird is mostly tested with
 Other compilers might work, but at the moment that is not
 guaranteed.
 
+Building
+--------
+
+To build the client, you need to first fetch the source code
+and the dependencies:
+
+.. codeblock
+
+::
+
+    $ hg clone https://bitbucket.org/tkoskine/ladybird
+    $ cd ladybird
+    $ hg clone https://bitbucket.org/tkoskine/hauki
+    $ hg clone https://bitbucket.org/tkoskine/jdaughter
+    $ hg clone https://bitbucket.org/tkoskine/curl-ada
+
+Then compile the code:
+
+.. codeblock
+
+::
+
+   # curl-ada needs to be build separately first
+   $ cd curl-ada && make && cd ..
+   
+   # then the rest
+   $ make
+
+After a while you should have binary called *twit2* in 
+the current directory.
 
 License
 -------

          
M twit.gpr +1 -2
@@ 1,8 1,7 @@ 
-with "curl";
 
 project Twit is
    for Object_Dir use "objects";
-   for Source_Dirs use ("src");
+   for Source_Dirs use ("src", "curl-ada/src", "hauki/src", "jdaughter/src");
    for Exec_Dir use ".";
    for Main use ("twit2.adb");