Add 'trau2rtp' demo program illustrating the use of new TRAU code

This is just for development and hence in 'contrib', and not built by
default.  For details, see the included README

Change-Id: I0190872dd282bcfe0f97bb4f8ab8d09023f9f06b
diff --git a/contrib/trau2rtp/Makefile b/contrib/trau2rtp/Makefile
new file mode 100644
index 0000000..cfb68be
--- /dev/null
+++ b/contrib/trau2rtp/Makefile
@@ -0,0 +1,13 @@
+CFLAGS := -Wall `pkg-config --cflags libosmocore libosmogsm libosmotrau`
+LIBS := `pkg-config --libs libosmocore libosmogsm libosmotrau`
+
+all: trau2rtp
+
+%.o: %.c
+	$(CC) $(CFLAGS) -o $@ -c $^
+
+trau2rtp: trau2rtp.o
+	$(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
+
+clean:
+	@rm -f *.o trau2rtp