mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice-gtk
synced 2026-02-04 13:01:52 +00:00
For historical reasons, the code was placed under gtk/ subdirectory. If it was always bugging you, bug no more!
35 lines
537 B
Makefile
35 lines
537 B
Makefile
NULL =
|
|
|
|
noinst_PROGRAMS = \
|
|
coroutine \
|
|
util \
|
|
session \
|
|
$(NULL)
|
|
|
|
if WITH_PHODAV
|
|
noinst_PROGRAMS += pipe
|
|
endif
|
|
|
|
TESTS = $(noinst_PROGRAMS)
|
|
|
|
AM_CPPFLAGS = \
|
|
$(GIO_CFLAGS) \
|
|
-I$(top_srcdir)/src \
|
|
-I$(top_builddir)/src \
|
|
-DG_LOG_DOMAIN=\"GSpice\" \
|
|
$(NULL)
|
|
|
|
AM_LDFLAGS = $(GIO_LIBS) -static
|
|
|
|
LDADD = \
|
|
$(top_builddir)/src/libspice-client-glib-2.0.la \
|
|
$(NULL)
|
|
|
|
util_SOURCES = util.c
|
|
coroutine_SOURCES = coroutine.c
|
|
session_SOURCES = session.c
|
|
pipe_SOURCES = pipe.c
|
|
|
|
|
|
-include $(top_srcdir)/git.mk
|