[thrift] highly concurrent Erlang goodness

Summary:
 * shim to use object-oriented code as gen_servers
 * high(er) performance Erlang-style server and transport
 * sane packaging based on otp-base, i.e. Makefiles and real structure

Test Plan: tutorial server offers the same (subset of) functionality as previous version

Revert Plan: ok


git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665164 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/lib/erl/Makefile b/lib/erl/Makefile
new file mode 100644
index 0000000..072c8fa
--- /dev/null
+++ b/lib/erl/Makefile
@@ -0,0 +1,14 @@
+MODULES = lib # release
+
+all clean:
+	@for dir in $(MODULES); do \
+		(cd $$dir; ${MAKE} $@); \
+		if [ "$$?" -ne "0" ]; then ERROR=$$?; echo "Error Code $$ERROR"; exit $$ERROR; fi; \
+	done
+
+docs:
+	(cd lib; ${MAKE} $@); \
+	if [ "$$?" -ne "0" ]; then ERROR=$$?; echo "Error Code $$ERROR"; exit $$ERROR; fi; 
+
+install:
+	echo NO OP