]> git.proxmox.com Git - spiceterm.git/blobdiff - Makefile
add first version of spiceterm (copied from vncterm)
[spiceterm.git] / Makefile
index d028f2b4b3e455c8e5437da430dc5e8c45267602..77b93c95d42d0dcb4b0d3f06aee4ea45a7b7ddc4 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,13 +1,21 @@
 
-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
+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}
-       gcc ${SOURCES} -o $@ $(shell pkg-config --cflags --libs spice-protocol,spice-server)
+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: test
-test: test_display_no_ssl
+.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