Makefile.am 628 B

1234567891011121314151617181920
  1. # This is _NOT_ the library release version, it's an API version.
  2. # Please read Chapter 6 "Library interface versions" of the libtool documentation before making any modification
  3. LIBVERSION=0:0:0
  4. INCLUDES = $(all_includes) -I$(top_srcdir)/include
  5. AM_CFLAGS = -fPIC -Wall
  6. lib_LTLIBRARIES = librtlsdr.la
  7. librtlsdr_la_SOURCES = librtlsdr.c tuner_e4k.c tuner_fc0012.c tuner_fc0013.c tuner_fc2580.c
  8. librtlsdr_la_LDFLAGS = -version-info $(LIBVERSION)
  9. bin_PROGRAMS = rtl_sdr rtl_tcp
  10. rtl_sdr_SOURCES = rtl_sdr.c
  11. rtl_sdr_LDADD = librtlsdr.la
  12. rtl_tcp_SOURCES = rtl_tcp.c
  13. rtl_tcp_LDADD = librtlsdr.la