mirror of
https://github.com/rtlsdrblog/rtl-sdr-blog.git
synced 2025-01-05 15:57:14 +01:00
bf92121aff
Thanks to zecke for pointing this out. Signed-off-by: Steve Markgraf <steve@steve-m.de>
37 lines
1.3 KiB
Makefile
37 lines
1.3 KiB
Makefile
# 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:5:0
|
|
|
|
AUTOMAKE_OPTIONS = subdir-objects
|
|
INCLUDES = $(all_includes) -I$(top_srcdir)/include
|
|
noinst_HEADERS = convenience/convenience.h
|
|
AM_CFLAGS = ${CFLAGS} -fPIC ${SYMBOL_VISIBILITY}
|
|
|
|
lib_LTLIBRARIES = librtlsdr.la
|
|
|
|
librtlsdr_la_SOURCES = librtlsdr.c tuner_e4k.c tuner_fc0012.c tuner_fc0013.c tuner_fc2580.c tuner_r82xx.c
|
|
librtlsdr_la_LDFLAGS = -version-info $(LIBVERSION)
|
|
|
|
bin_PROGRAMS = rtl_sdr rtl_tcp rtl_test rtl_fm rtl_eeprom rtl_adsb rtl_power
|
|
|
|
rtl_sdr_SOURCES = rtl_sdr.c convenience/convenience.c
|
|
rtl_sdr_LDADD = librtlsdr.la
|
|
|
|
rtl_tcp_SOURCES = rtl_tcp.c convenience/convenience.c
|
|
rtl_tcp_LDADD = librtlsdr.la
|
|
|
|
rtl_test_SOURCES = rtl_test.c convenience/convenience.c
|
|
rtl_test_LDADD = librtlsdr.la $(LIBM)
|
|
|
|
rtl_fm_SOURCES = rtl_fm.c convenience/convenience.c
|
|
rtl_fm_LDADD = librtlsdr.la $(LIBM)
|
|
|
|
rtl_eeprom_SOURCES = rtl_eeprom.c convenience/convenience.c
|
|
rtl_eeprom_LDADD = librtlsdr.la $(LIBM)
|
|
|
|
rtl_adsb_SOURCES = rtl_adsb.c convenience/convenience.c
|
|
rtl_adsb_LDADD = librtlsdr.la $(LIBM)
|
|
|
|
rtl_power_SOURCES = rtl_power.c convenience/convenience.c
|
|
rtl_power_LDADD = librtlsdr.la $(LIBM)
|