blob: 620a8cb9a3ad9cf1a0b4b0e76586d79f70649d3a [file] [log] [blame]
Harald Welte3fb0b6f2010-05-19 19:02:52 +02001# This is _NOT_ the library release version, it's an API version.
2# Please read Chapter 6 "Library interface versions" of the libtool documentation before making any modification
Holger Hans Peter Freyther8649d572015-11-03 09:30:52 +01003LIBVERSION=3:0:0
Harald Welte3fb0b6f2010-05-19 19:02:52 +02004
Jan Engelhardt9ffeb972013-06-03 01:59:25 +02005AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include
Harald Welte90e614f2015-12-05 23:38:18 +01006AM_CFLAGS = -Wall $(TALLOC_CFLAGS)
Harald Welte3fb0b6f2010-05-19 19:02:52 +02007
Harald Welte54403772010-05-29 11:49:51 +02008if ENABLE_VTY
Harald Welte3fb0b6f2010-05-19 19:02:52 +02009lib_LTLIBRARIES = libosmovty.la
10
11libosmovty_la_SOURCES = buffer.c command.c vty.c vector.c utils.c \
Jacob Erlbeck45513e62015-10-19 15:14:13 +020012 telnet_interface.c logging_vty.c stats_vty.c
Harald Welte90e614f2015-12-05 23:38:18 +010013libosmovty_la_LDFLAGS = -version-info $(LIBVERSION) -no-undefined $(TALLOC_LIBS)
Harald Welte49cc32b2011-02-19 16:10:51 +090014libosmovty_la_LIBADD = $(top_builddir)/src/libosmocore.la
Harald Welte54403772010-05-29 11:49:51 +020015endif