aboutsummaryrefslogtreecommitdiffstats
path: root/src/common/Makefile.am
blob: abdb4b5feb4b3532bc280bbd2a2aab41db77b460 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
AM_CPPFLAGS = -Wall -Wextra -g $(all_includes) $(UHD_CFLAGS) $(SOAPY_CFLAGS)

noinst_LIBRARIES = libcommon.a

libcommon_a_SOURCES = \
	sample.c \
	debug.c \
	timer.c \
	sound_alsa.c \
	wave.c \
	goertzel.c \
	jitter.c \
	loss.c \
	iir_filter.c \
	dtmf.c \
	samplerate.c \
	call.c \
	freiton.c \
	besetztton.c \
	testton.c \
	mncc_sock.c \
	cause.c \
	emphasis.c \
	compandor.c \
	fft.c \
	fm_modulation.c \
	sender.c \
	display_wave.c \
	display_status.c \
	main_common.c

if HAVE_SDR
AM_CPPFLAGS += -DHAVE_SDR

libcommon_a_SOURCES += \
	sdr.c \
	display_iq.c \
	display_spectrum.c
endif

if HAVE_UHD
AM_CPPFLAGS += -DHAVE_UHD

libcommon_a_SOURCES += \
	uhd.c
endif

if HAVE_SOAPY
AM_CPPFLAGS += -DHAVE_SOAPY

libcommon_a_SOURCES += \
	soapy.c
endif