meas_feed: add osmo-meas-udp2db for realtime feed into database

This tool can save the meas_feed messages from UDP port 8888 directly to
a sqlite3 database for further analysis.
diff --git a/openbsc/src/utils/Makefile.am b/openbsc/src/utils/Makefile.am
index 3fd7e10..30f787f 100644
--- a/openbsc/src/utils/Makefile.am
+++ b/openbsc/src/utils/Makefile.am
@@ -5,9 +5,9 @@
 noinst_HEADERS = meas_db.h
 
 if HAVE_LIBCDK
-bin_PROGRAMS = bs11_config isdnsync osmo-meas-pcap2db meas_vis
+bin_PROGRAMS = bs11_config isdnsync osmo-meas-pcap2db osmo-meas-udp2db meas_vis
 else
-bin_PROGRAMS = bs11_config isdnsync osmo-meas-pcap2db
+bin_PROGRAMS = bs11_config isdnsync osmo-meas-pcap2db osmo-meas-udp2db
 endif
 
 if BUILD_SMPP
@@ -33,3 +33,7 @@
 osmo_meas_pcap2db_SOURCES = meas_pcap2db.c meas_db.c
 osmo_meas_pcap2db_LDADD = $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS) -lpcap -lsqlite3
 osmo_meas_pcap2db_CFLAGS = $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS)
+
+osmo_meas_udp2db_SOURCES = meas_udp2db.c meas_db.c
+osmo_meas_udp2db_LDADD = $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS) -lsqlite3
+osmo_meas_udp2db_CFLAGS = $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS)