rtl-sdr/src/Makefile.am

37 lines
1.3 KiB
Makefile
Raw Normal View History

2012-03-27 18:53:49 +00:00
# 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
2012-03-27 18:53:49 +00:00
AUTOMAKE_OPTIONS = subdir-objects
2012-03-27 18:53:49 +00:00
INCLUDES = $(all_includes) -I$(top_srcdir)/include
noinst_HEADERS = convenience/convenience.h
AM_CFLAGS = ${CFLAGS} -fPIC ${SYMBOL_VISIBILITY}
2012-03-27 18:53:49 +00:00
lib_LTLIBRARIES = librtlsdr.la
librtlsdr_la_SOURCES = librtlsdr.c tuner_e4k.c tuner_fc0012.c tuner_fc0013.c tuner_fc2580.c tuner_r82xx.c
2012-05-14 18:48:25 +00:00
librtlsdr_la_LDFLAGS = -version-info $(LIBVERSION)
2012-03-27 18:53:49 +00:00
bin_PROGRAMS = rtl_sdr rtl_tcp rtl_test rtl_fm rtl_eeprom rtl_adsb rtl_power
2012-05-05 22:34:13 +00:00
rtl_sdr_SOURCES = rtl_sdr.c convenience/convenience.c
2012-03-27 18:53:49 +00:00
rtl_sdr_LDADD = librtlsdr.la
2012-04-19 15:46:52 +00:00
rtl_tcp_SOURCES = rtl_tcp.c convenience/convenience.c
2012-04-19 15:46:52 +00:00
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)