summaryrefslogtreecommitdiff
path: root/lib/Makefile.am
blob: 59561fc4cc1018e91f20469bf70fbdc27af1e2f0 (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
55
56
57
58
59
AM_CXXFLAGS := 

lib_LTLIBRARIES = libmiav.la
libmiav_la_LIBADD = $(LUA_LIBS)
libmiav_la_CFLAGS = $(LUA_CFLAGS)

libmiav_la_SOURCES = \
	aa_socket.cc \
	configuration.cc \
	file.cc \
	frame.cc \
	info.cc \
	info_simple.cc \
	jpeg_mem_dest.cc \
	libdv_wrapper.cc \
	liblua_wrapper.cc \
	mutex.cc \
	network.cc \
	semaphore.cc \
	socket.cc \
	udp_socket.cc \
	tcp_socket.cc \
	status.cc \
	thread.cc \
	threadsafe_queue.cc \
	threadsafe_queue_fifo.cc \
	threadsafe_queue_priority.cc \
	transcoder.cc \
	util.cc

EXTRA_DIST = \
	aa_socket.h \
	configuration.h \
	dv.h \
	file.h \
	frame.h \
	frame_stream.h \
	info.h \
	info_simple.h \
	jpeg_mem_dest.h \
	libdv_wrapper.h \
	liblua_wrapper.h \
	mutex.h \
	network.h \
	package.h \
	queue.h \
	semaphore.h \
	socket.h \
	udp_socket.h \
	tcp_socket.h \
	status.h \
	thread.h \
	threadsafe_queue.h \
	threadsafe_queue_fifo.h \
	threadsafe_queue_priority.h \
	timecode.h \
	transcoder.h \
	util.h