summaryrefslogtreecommitdiff
path: root/src/Makefile.am
blob: ef3cfdb183b2e24c1dd2a01231a0793302537cbd (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
lib_LTLIBRARIES = liblrtp.la

liblrtp_la_LIBADD = $(SRTP_LIBS)

liblrtp_la_CXXFLAGS = $(SRTP_CXXFLAGS)

liblrtp_la_SOURCES = \
	lrtp.cc \
	error.cc \
	rtp.cc \
	srtp.cc \
	rtp_profile_amrwb.cc \
	rtp_profile_opus.cc \
	rtp_profile_l16.cc \
	rtp_profile_raw.cc \
	rtp_profile_jpeg.cc \
	asc2bin.cc

include_HEADERS = \
	lrtp.h \
	lrtp_profiles.h

EXTRA_DIST = \
	compat.h \
	error.h \
	rtp_profile.h \
	rtp_profile_amrwb.h \
	rtp_profile_opus.h \
	rtp_profile_l16.h \
	rtp_profile_raw.h \
	rtp_profile_jpeg.h \
	rtp.h \
	srtp.h \
	asc2bin.h