Rename gprs_rlcmac_ts_alloc.cpp -> alloc_algo.cpp & create own .h file

First commit towards trying to have alloc algorithm as isolated as
possible from others parts of the code trying to avoid state changes on
data structures.
Change name also because the alloc_algo not only allocated TS, but TFIs
and USFs.

Change-Id: I33a6c178c64a769f05d3880a69c38acb154afa62
diff --git a/src/Makefile.am b/src/Makefile.am
index e7e94e0..e020ffa 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -39,6 +39,7 @@
 noinst_LTLIBRARIES = libgprs.la
 
 libgprs_la_SOURCES = \
+	alloc_algo.cpp \
 	gprs_debug.c \
 	csn1.c \
 	csn1_dec.c \
@@ -49,7 +50,6 @@
 	gprs_rlcmac.cpp \
 	gprs_rlcmac_sched.cpp \
 	gprs_rlcmac_meas.cpp \
-	gprs_rlcmac_ts_alloc.cpp \
 	gprs_ms.c \
 	gprs_ms_storage.cpp \
 	gprs_pcu.c \
@@ -89,6 +89,7 @@
 noinst_PROGRAMS =
 
 noinst_HEADERS = \
+	alloc_algo.h \
 	gprs_debug.h \
 	csn1.h \
 	gsm_rlcmac.h \