This repository has been archived on 2022-02-18. You can view files and clone it, but cannot push or open issues or pull requests.
osmo-sdr/software/libosmosdr/src/Makefile.am

17 lines
525 B
Makefile
Raw Normal View History

# 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 = ${CFLAGS} -fPIC ${SYMBOL_VISIBILITY}
lib_LTLIBRARIES = libosmosdr.la
2012-05-20 12:02:53 +00:00
libosmosdr_la_SOURCES = libosmosdr.c
2012-05-14 18:46:50 +00:00
libosmosdr_la_LDFLAGS = -version-info $(LIBVERSION)
2012-05-20 14:44:57 +00:00
bin_PROGRAMS = osmo_sdr
osmo_sdr_SOURCES = osmo_sdr.c
osmo_sdr_LDADD = libosmosdr.la