diff options
Diffstat (limited to 'src/codec/Makefile.am')
-rw-r--r-- | src/codec/Makefile.am | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/codec/Makefile.am b/src/codec/Makefile.am new file mode 100644 index 00000000..d36e23fc --- /dev/null +++ b/src/codec/Makefile.am @@ -0,0 +1,11 @@ +# 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 + +lib_LTLIBRARIES = libosmocodec.la + +libosmocodec_la_SOURCES = gsm610.c gsm620.c gsm660.c gsm690.c +libosmocodec_la_LDFLAGS = -version-info $(LIBVERSION) |