mirror of
git://git.proxmox.com/git/spiceterm.git
synced 2025-01-22 22:03:56 +03:00
14 lines
412 B
Makefile
14 lines
412 B
Makefile
|
|
PROGRAMS=test_display_no_ssl
|
|
HEADERS=test_display_base.h basic_event_loop.h ring.h glyphs.h
|
|
SOURCES=test_display_base.c test_display_no_ssl.c basic_event_loop.c
|
|
|
|
all: ${PROGRAMS}
|
|
|
|
test_display_no_ssl: ${SOURCES} ${HEADERS}
|
|
gcc ${SOURCES} -o $@ $(shell pkg-config --cflags --libs spice-protocol,spice-server)
|
|
|
|
.PHONY: test
|
|
test: test_display_no_ssl
|
|
./test_display_no_ssl & remote-viewer spice://localhost:5912
|