blob: b7be6f848f46c56dd17bb32b2e678e182ae266d1 [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
3LIBVERSION=0:0:0
4
5INCLUDES = $(all_includes) -I$(top_srcdir)/include
6AM_CFLAGS = -fPIC -Wall
7
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 \
12 telnet_interface.c logging_vty.c
Harald Welte75337052011-05-08 14:35:40 +020013libosmovty_la_LDFLAGS = -version-info $(LIBVERSION)
Harald Welte49cc32b2011-02-19 16:10:51 +090014libosmovty_la_LIBADD = $(top_builddir)/src/libosmocore.la
Harald Welte54403772010-05-29 11:49:51 +020015endif