mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2025-12-26 14:41:25 +00:00
Use new common.m4 include file to make easier to integrate with spice-common repository. The new include will allow for instance spice-common to add additional dependencies without changes (or minor) to spice-server. Signed-off-by: Frediano Ziglio <fziglio@redhat.com> Acked-by: Kevin Pouget <kpouget@redhat.com>
25 lines
263 B
Makefile
25 lines
263 B
Makefile
NULL =
|
|
|
|
AM_CPPFLAGS = \
|
|
$(SPICE_COMMON_CFLAGS) \
|
|
$(WARN_CFLAGS) \
|
|
$(NULL)
|
|
|
|
AM_LDFLAGS = \
|
|
$(LIBRT) \
|
|
$(NULL)
|
|
|
|
if !OS_WIN32
|
|
noinst_PROGRAMS = \
|
|
reds_stat \
|
|
$(NULL)
|
|
|
|
reds_stat_SOURCES = \
|
|
reds_stat.c \
|
|
$(NULL)
|
|
endif
|
|
|
|
EXTRA_DIST = \
|
|
meson.build \
|
|
$(NULL)
|