mirror of
git://git.proxmox.com/git/spiceterm.git
synced 2025-03-12 20:58:27 +03:00
28 lines
776 B
Makefile
28 lines
776 B
Makefile
|
|
PROGRAMS=test_display_no_ssl spiceterm
|
|
|
|
HEADERS=test_display_base.h basic_event_loop.h ring.h glyphs.h spiceterm.h
|
|
SOURCES=test_display_base.c basic_event_loop.c
|
|
|
|
all: ${PROGRAMS}
|
|
|
|
test_display_no_ssl: ${SOURCES} ${HEADERS} test_display_no_ssl.c
|
|
gcc ${SOURCES} test_display_no_ssl.c -o $@ $(shell pkg-config --cflags --libs spice-protocol,spice-server)
|
|
|
|
spiceterm: ${SOURCES} ${HEADERS} spiceterm.c
|
|
gcc ${SOURCES} spiceterm.c -o $@ -lutil $(shell pkg-config --cflags --libs spice-protocol,spice-server)
|
|
|
|
.PHONY: test1
|
|
test1: test_display_no_ssl
|
|
./test_display_no_ssl & remote-viewer spice://localhost:5912
|
|
|
|
.PHONY: test2
|
|
test2: spiceterm
|
|
./spiceterm & remote-viewer spice://localhost:5912
|
|
|
|
.PHONY: distclean
|
|
distclean: clean
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf *~ ${PROGRAMS}
|