diff options
author | Harald Welte <laforge@gnumonks.org> | 2010-02-20 21:09:24 +0100 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2010-02-20 21:09:24 +0100 |
commit | 3cae0398eaef6045de883849a236c38d1767cb41 (patch) | |
tree | e206fbaec0bb64687b98fe4db6d97ac3386be354 /src | |
parent | 26cbdcff24d42b4387f2446d698ffbf18e4bcbef (diff) |
add missing automake / autoconf files
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 00000000..b82b6fb1 --- /dev/null +++ b/src/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 = libosmocore.la + +libosmocore_la_SOURCES = msgb.c timer.c talloc.c select.c signal.c \ + tlv_parser.c bitvec.c comp128.c gsm_utils.c statistics.c |