-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile.am
28 lines (25 loc) · 877 Bytes
/
Makefile.am
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
bin_PROGRAMS = tx rx
tx_SOURCES = \
defaults.h \
device.c \
device.h \
notice.h \
ptt.c \
ptt.h \
trx-sched.c \
trx-sched.h \
tx.c
tx_CPPFLAGS = $(ALSA_CPPFLAGS) $(OPUS_CPPFLAGS) $(ORTP_CPPFLAGS) $(BCTOOLBOX_CPPFLAGS) $(GPIOD_CPPFLAGS) $(OPENSSL_CPPFLAGS)
tx_LDFLAGS = $(ALSA_LDFLAGS) $(OPUS_LDFLAGS) $(ORTP_LDFLAGS) $(BCTOOLBOX_LDFLAGS) $(GPIOD_LDFLAGS) $(OPENSSL_LDFLAGS)
tx_LDADD = $(ALSA_LIBS) $(OPUS_LIBS) $(ORTP_LIBS) $(BCTOOLBOX_LIBS) $(GPIOD_LIBS) $(OPENSSL_LIBS)
rx_SOURCES = \
defaults.h \
device.c \
device.h \
notice.h \
trx-sched.c \
trx-sched.h \
rx.c
rx_CPPFLAGS = $(ALSA_CPPFLAGS) $(OPUS_CPPFLAGS) $(ORTP_CPPFLAGS) $(BCTOOLBOX_CPPFLAGS) $(OPENSSL_CPPFLAGS)
rx_LDFLAGS = $(ALSA_LDFLAGS) $(OPUS_LDFLAGS) $(ORTP_LDFLAGS) $(BCTOOLBOX_LDFLAGS) $(OPENSSL_LDFLAGS)
rx_LDADD = $(ALSA_LIBS) $(OPUS_LIBS) $(ORTP_LIBS) $(BCTOOLBOX_LIBS) $(OPENSSL_LIBS)