blob: 52cdc8e8cc93cb8c32abd4e7e65c41f11fa26ff8 [file] [log] [blame]
Harald Welte3fb0b6f2010-05-19 19:02:52 +02001# This is _NOT_ the library release version, it's an API version.
Max4e72ee02016-12-13 18:41:17 +01002# Please read chapter "Library interface versions" of the libtool documentation
3# before making any modifications: https://www.gnu.org/software/libtool/manual/html_node/Versioning.html
Holger Hans Peter Freyther8649d572015-11-03 09:30:52 +01004LIBVERSION=3:0:0
Harald Welte3fb0b6f2010-05-19 19:02:52 +02005
Jan Engelhardt9ffeb972013-06-03 01:59:25 +02006AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include
Harald Welte90e614f2015-12-05 23:38:18 +01007AM_CFLAGS = -Wall $(TALLOC_CFLAGS)
Harald Welte3fb0b6f2010-05-19 19:02:52 +02008
Harald Welte54403772010-05-29 11:49:51 +02009if ENABLE_VTY
Harald Welte3fb0b6f2010-05-19 19:02:52 +020010lib_LTLIBRARIES = libosmovty.la
11
12libosmovty_la_SOURCES = buffer.c command.c vty.c vector.c utils.c \
Jacob Erlbeck45513e62015-10-19 15:14:13 +020013 telnet_interface.c logging_vty.c stats_vty.c
Harald Welte90e614f2015-12-05 23:38:18 +010014libosmovty_la_LDFLAGS = -version-info $(LIBVERSION) -no-undefined $(TALLOC_LIBS)
Harald Welte49cc32b2011-02-19 16:10:51 +090015libosmovty_la_LIBADD = $(top_builddir)/src/libosmocore.la
Harald Welte54403772010-05-29 11:49:51 +020016endif