blob: db55856650106fa7ed00e7a19a8382c440748263 (
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
60
61
62
63
64
65
66
67
68
69
|
# Makefile configuration for SPICE streaming agent
#
# \copyright
# Copyright 2016-2017 Red Hat Inc. All rights reserved.
NULL =
if ENABLE_TESTS
SUBDIRS = . unittests
endif
AM_CPPFLAGS = \
-DSPICE_STREAMING_AGENT_PROGRAM \
-I$(top_srcdir)/include \
-DPLUGINSDIR=\"$(pkglibdir)/plugins\" \
$(SPICE_PROTOCOL_CFLAGS) \
$(X11_CFLAGS) \
$(XFIXES_CFLAGS) \
$(NULL)
AM_CFLAGS = \
$(WARN_CFLAGS) \
$(NULL)
AM_CXXFLAGS = \
$(WARN_CXXFLAGS) \
$(NULL)
bin_PROGRAMS = spice-streaming-agent
noinst_LIBRARIES = libstreaming-utils.a
libstreaming_utils_a_SOURCES = \
hexdump.c \
hexdump.h \
$(NULL)
spice_streaming_agent_LDFLAGS = \
$(RELRO_LDFLAGS) \
$(NO_INDIRECT_LDFLAGS) \
$(NULL)
spice_streaming_agent_LDADD = \
-ldl \
-lpthread \
libstreaming-utils.a \
$(X11_LIBS) \
$(XFIXES_LIBS) \
$(JPEG_LIBS) \
$(NULL)
spice_streaming_agent_SOURCES = \
spice-streaming-agent.cpp \
concrete-agent.cpp \
concrete-agent.hpp \
error.cpp \
error.hpp \
frame-log.cpp \
frame-log.hpp \
xorg-utils.cpp \
xorg-utils.hpp \
mjpeg-fallback.cpp \
mjpeg-fallback.hpp \
jpeg.cpp \
jpeg.hpp \
stream-port.cpp \
stream-port.hpp \
eventfd.cpp \
eventfd.hpp \
$(NULL)
|