parent
45a5568f70
commit
1650cc5ad2
@ -1,3 +1,41 @@ |
||||
AUTOMAKE_OPTIONS = foreign
|
||||
SUBDIRS = libsound libimage libcompandor libgoertzel libjitter libsquelch libhagelbarger libdtmf libtimer libsamplerate libscrambler libemphasis libfsk libfm libfilter libwave libfft libmncc common anetz bnetz cnetz nmt amps tacs jtacs r2000 tv test
|
||||
|
||||
SUBDIRS = \
|
||||
libimage \
|
||||
libcompandor \
|
||||
libgoertzel \
|
||||
libjitter \
|
||||
libsquelch \
|
||||
libhagelbarger \
|
||||
libdtmf \
|
||||
libtimer \
|
||||
libsamplerate \
|
||||
libscrambler \
|
||||
libemphasis \
|
||||
libfsk \
|
||||
libfm \
|
||||
libfilter \
|
||||
libwave \
|
||||
libfft \
|
||||
libmncc \
|
||||
libsound
|
||||
|
||||
if HAVE_SDR |
||||
SUBDIRS += \
|
||||
libsdr
|
||||
endif |
||||
|
||||
SUBDIRS += \
|
||||
common \
|
||||
anetz \
|
||||
bnetz \
|
||||
cnetz \
|
||||
nmt \
|
||||
amps \
|
||||
tacs \
|
||||
jtacs \
|
||||
r2000 \
|
||||
tv \
|
||||
test
|
||||
|
||||
|
||||
|
@ -0,0 +1,26 @@ |
||||
AM_CPPFLAGS = -Wall -Wextra -g $(all_includes)
|
||||
|
||||
noinst_LIBRARIES = libsdr.a
|
||||
|
||||
libsdr_a_SOURCES = \
|
||||
dd sdr_config.c \ |
||||
sdr.c \
|
||||
display_iq.c \
|
||||
display_spectrum.c
|
||||
|
||||
AM_CPPFLAGS += -DHAVE_SDR
|
||||
|
||||
if HAVE_UHD |
||||
AM_CPPFLAGS += -DHAVE_UHD
|
||||
|
||||
libsdr_a_SOURCES += \
|
||||
uhd.c
|
||||
endif |
||||
|
||||
if HAVE_SOAPY |
||||
AM_CPPFLAGS += -DHAVE_SOAPY
|
||||
|
||||
libsdr_a_SOURCES += \
|
||||
soapy.c
|
||||
endif |
||||
|
Loading…
Reference in new issue