File: Makefile.am

package info (click to toggle)
spice 0.12.8-2.1%2Bdeb9u3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 8,312 kB
  • sloc: ansic: 70,594; sh: 4,497; python: 2,950; makefile: 507
file content (153 lines) | stat: -rw-r--r-- 3,239 bytes parent folder | download
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
NULL =
SUBDIRS = . tests

AM_CPPFLAGS =					\
	-DSPICE_SERVER_INTERNAL			\
	-DRED_STATISTICS			\
	$(COMMON_CFLAGS)			\
	$(GLIB2_CFLAGS)				\
	$(LZ4_CFLAGS)				\
	$(PIXMAN_CFLAGS)			\
	$(SASL_CFLAGS)				\
	$(SLIRP_CFLAGS)				\
	$(SMARTCARD_CFLAGS)			\
	$(SPICE_PROTOCOL_CFLAGS)		\
	$(SSL_CFLAGS)				\
	$(VISIBILITY_HIDDEN_CFLAGS)		\
	$(WARN_CFLAGS)				\
	$(NULL)

lib_LTLIBRARIES = libspice-server.la

libspice_server_la_LDFLAGS =			\
	-version-info $(SPICE_LT_VERSION)	\
	-no-undefined				\
	$(RELRO_LDFLAGS)			\
	$(NO_INDIRECT_LDFLAGS)			\
	$(NULL)

if HAVE_LD_VERSION_SCRIPT
libspice_server_la_LDFLAGS += \
	-Wl,--version-script=$(top_srcdir)/server/spice-server.syms
endif

libspice_server_la_LIBADD =						\
	$(top_builddir)/spice-common/common/libspice-common.la		\
	$(top_builddir)/spice-common/common/libspice-common-server.la	\
	$(GL_LIBS)							\
	$(GLIB2_LIBS)							\
	$(JPEG_LIBS)							\
	$(LZ4_LIBS)							\
	$(LIBRT)							\
	$(PIXMAN_LIBS)							\
	$(SASL_LIBS)							\
	$(SLIRP_LIBS)							\
	$(SSL_LIBS)							\
	$(Z_LIBS)							\
	$(SPICE_NONPKGCONFIG_LIBS)					\
	$(NULL)

libspice_serverincludedir = $(includedir)/spice-server
libspice_serverinclude_HEADERS =		\
	spice-audio.h				\
	spice-char.h				\
	spice-core.h				\
	spice-experimental.h			\
	spice-input.h				\
	spice-migration.h			\
	spice-qxl.h				\
	spice-server.h				\
	spice-version.h				\
	spice.h					\
	$(NULL)

libspice_server_la_SOURCES =			\
	$(libspice_serverinclude_HEADERS)	\
	agent-msg-filter.c			\
	agent-msg-filter.h			\
	char_device.c				\
	char_device.h				\
	demarshallers.h				\
	glz_encoder.c				\
	glz_encoder.h				\
	glz_encoder_config.h			\
	glz_encoder_dictionary.c		\
	glz_encoder_dictionary.h		\
	glz_encoder_dictionary_protected.h	\
	inputs_channel.c			\
	inputs_channel.h			\
	jpeg_encoder.c				\
	jpeg_encoder.h				\
	lz4_encoder.c				\
	lz4_encoder.h				\
	main_channel.c				\
	main_channel.h				\
	mjpeg_encoder.c				\
	mjpeg_encoder.h				\
	red_bitmap_utils.h			\
	red_channel.c				\
	red_channel.h				\
	red_client_cache.h			\
	red_client_shared_cache.h		\
	red_common.h				\
	dispatcher.c				\
	dispatcher.h				\
	red_dispatcher.c			\
	red_dispatcher.h			\
	main_dispatcher.c			\
	main_dispatcher.h			\
	migration_protocol.h		\
	red_memslots.c				\
	red_memslots.h				\
	red_parse_qxl.c				\
	red_record_qxl.c			\
	red_record_qxl.h			\
	red_replay_qxl.c			\
	red_replay_qxl.h			\
	red_parse_qxl.h				\
	red_time.h				\
	red_worker.c				\
	red_worker.h				\
	reds.c					\
	reds.h					\
	reds-private.h				\
	reds_stream.c				\
	reds_stream.h				\
	reds_sw_canvas.c			\
	reds_sw_canvas.h			\
	snd_worker.c				\
	snd_worker.h				\
	stat.h					\
	spicevmc.c				\
	spice_timer_queue.c			\
	spice_timer_queue.h			\
	zlib_encoder.c				\
	zlib_encoder.h				\
	spice_bitmap_utils.h		\
	spice_bitmap_utils.c		\
	spice_server_utils.h		\
	spice_image_cache.h			\
	spice_image_cache.c			\
	$(NULL)

if HAVE_GL
libspice_server_la_SOURCES +=	\
	reds_gl_canvas.c	\
	reds_gl_canvas.h	\
	$(NULL)
endif

if HAVE_SMARTCARD
libspice_server_la_SOURCES +=	\
	smartcard.c		\
	smartcard.h		\
	$(NULL)
endif

EXTRA_DIST =					\
	glz_encode_match_tmpl.c			\
	glz_encode_tmpl.c			\
	spice-server.syms			\
	$(NULL)

BUILT_SOURCES = $(spice_built_sources)