aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--configure.in1
-rw-r--r--include/Makefile.am2
-rw-r--r--include/vty/Makefile.am1
-rw-r--r--src/Makefile.am1
4 files changed, 4 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 94bc240a3..9b38d417b 100644
--- a/configure.in
+++ b/configure.in
@@ -18,6 +18,7 @@ dnl Checks for typedefs, structures and compiler characteristics
AC_OUTPUT(
include/openbsc/Makefile
+ include/vty/Makefile
include/Makefile
src/Makefile
tests/Makefile
diff --git a/include/Makefile.am b/include/Makefile.am
index 0de917819..36d57a3c5 100644
--- a/include/Makefile.am
+++ b/include/Makefile.am
@@ -1,3 +1,3 @@
-SUBDIRS = openbsc
+SUBDIRS = openbsc vty
noinst_HEADERS = mISDNif.h
diff --git a/include/vty/Makefile.am b/include/vty/Makefile.am
new file mode 100644
index 000000000..167476630
--- /dev/null
+++ b/include/vty/Makefile.am
@@ -0,0 +1 @@
+noinst_HEADERS = buffer.h command.h vector.h vty.h
diff --git a/src/Makefile.am b/src/Makefile.am
index b9e942788..b9b3892f7 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -3,6 +3,7 @@ AM_CFLAGS=-Wall
sbin_PROGRAMS = bsc_hack bs11_config ipaccess-find
noinst_LIBRARIES = libbsc.a libvty.a
+noinst_HEADERS = vty/cardshell.h
libbsc_a_SOURCES = abis_rsl.c abis_nm.c gsm_04_08.c gsm_data.c \
gsm_subscriber.c msgb.c select.c chan_alloc.c timer.c debug.c db.c \