aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2011-03-04 14:18:10 +0100
committerHarald Welte <laforge@gnumonks.org>2011-03-04 14:18:10 +0100
commit7241d22867e4a30d1f48fa71ef013fe386d90810 (patch)
treeccf865d705e4a2e958e44669b12e43339df5a94b /include
parent6836bfeca9f8799fb9d064c170f0939ad181c390 (diff)
Add autotools skeleton code
Diffstat (limited to 'include')
-rw-r--r--include/Makefile.am1
-rw-r--r--include/osmo-bts/Makefile.am1
-rw-r--r--include/osmo-bts/logging.h26
3 files changed, 28 insertions, 0 deletions
diff --git a/include/Makefile.am b/include/Makefile.am
new file mode 100644
index 00000000..7585a65f
--- /dev/null
+++ b/include/Makefile.am
@@ -0,0 +1 @@
+SUBDIRS = osmo-bts
diff --git a/include/osmo-bts/Makefile.am b/include/osmo-bts/Makefile.am
new file mode 100644
index 00000000..4b4f2b63
--- /dev/null
+++ b/include/osmo-bts/Makefile.am
@@ -0,0 +1 @@
+noinst_HEADERS = bts.h abis.h rsl.h oml.h support.h rtp.h logging.h
diff --git a/include/osmo-bts/logging.h b/include/osmo-bts/logging.h
new file mode 100644
index 00000000..466d5953
--- /dev/null
+++ b/include/osmo-bts/logging.h
@@ -0,0 +1,26 @@
+#ifndef _LOGGING_H
+#define _LOGGING_H
+
+#define DEBUG
+#include <osmocore/logging.h>
+
+enum {
+ DRSL,
+ DOML,
+ DRLL,
+ DRR,
+ DMM,
+ DCC,
+ DSMS,
+ DMEAS,
+ DPAG,
+ DLAPDM,
+ DL1C,
+ DSAP,
+ DABIS,
+ DRTP,
+};
+
+extern const struct log_info log_info;
+
+#endif /* _LOGGING_H */