blob: 7353ab8413002970b390c87d46235c943b2629c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# This is _NOT_ the library release version, it's an API version.
# Please read Chapter 6 "Library interface versions" of the libtool documentation before making any modification
LIBVERSION=0:0:0
INCLUDES = $(all_includes) -I$(top_srcdir)/include
AM_CFLAGS = -fPIC -Wall
if ENABLE_VTY
lib_LTLIBRARIES = libosmovty.la
libosmovty_la_SOURCES = buffer.c command.c vty.c vector.c utils.c \
telnet_interface.c logging_vty.c
libosmovty_la_LIBADD = $(top_builddir)/src/libosmocore.la
endif
|