mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2025-12-27 15:45:54 +00:00
26 lines
583 B
Makefile
26 lines
583 B
Makefile
NULL =
|
|
|
|
INCLUDES = \
|
|
-I.. \
|
|
$(PROTOCOL_CFLAGS) \
|
|
$(SPICE_NONPKGCONFIG_CFLAGS) \
|
|
$(NULL)
|
|
|
|
LDFLAGS = -L../.libs -lspice-server
|
|
|
|
bin_PROGRAMS = test_just_sockets_no_ssl test_empty_success test_fail_on_null_core_interface
|
|
|
|
test_just_sockets_no_ssl_SOURCES = test_just_sockets_no_ssl.c basic_event_loop.c
|
|
|
|
test_just_sockets_no_ssl_LDFLAGS = $(LDFLAGS)
|
|
|
|
test_empty_success_SOURCES = test_empty_success.c
|
|
|
|
test_empty_success_LDFLAGS = $(LDFLAGS)
|
|
|
|
test_fail_on_null_core_interface_SOURCES = test_fail_on_null_core_interface.c
|
|
|
|
test_fail_on_null_core_interface_LDFLAGS = $(LDFLAGS)
|
|
|
|
|