blob: 731ddce23ef3a71424cbb4dd2227b41edfdaa064 (
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
|
AM_CXXFLAGS := -I../lib -L../lib \
$(CXXFLAGS) $(EXTRA_CXXFLAGS) \
-DETC=\"$(prefix)/etc/miav\"
bin_PROGRAMS = miav_server
miav_server_LDADD = ../lib/libmiav.la
miav_server_SOURCES = \
miav_server.cc \
audio_encoder.cc \
img_encoder.cc \
info_console.cc \
libfame_wrapper.cc \
liblame_wrapper.cc \
libmplex_wrapper.cc \
mov_encoder.cc \
mov_encoder_thread.cc \
mov_encoder_writer.cc \
multicast.cc \
multicast_configuration.cc \
multiplexer.cc \
server.cc \
server_status.cc
EXTRA_DIST = \
miav_server.h \
audio_encoder.h \
config.h \
img_encoder.h \
info_console.h \
iso11172-1.h \
iso11172-2.h \
iso11172-3.h \
libfame_wrapper.h \
liblame_wrapper.h \
libmplex_wrapper.h \
mov_encoder.h \
mov_encoder_thread.h \
mov_encoder_writer.h \
multicast.h \
multicast_configuration.h \
multiplexer.h \
server.h \
server_status.h
|