]> git.proxmox.com Git - spiceterm.git/blobdiff - Makefile
use kvm keymap files
[spiceterm.git] / Makefile
index 8d8fb41a8ecde9db386e5bfdb51c5533f097621c..47d39a597c5aea96f170560e924e56bfd308e75f 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,24 +1,24 @@
 
-PROGRAMS=test_display_no_ssl spiceterm
+PROGRAMS=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
+HEADERS=translations.h event_loop.h glyphs.h spiceterm.h keysyms.h
+SOURCES=screen.c event_loop.c input.c spiceterm.c auth-pve.c
 
-all: ${PROGRAMS}
+#export G_MESSAGES_DEBUG=all 
+#export SPICE_DEBUG=1
 
-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)
+all: ${PROGRAMS}
 
 spiceterm: ${SOURCES} ${HEADERS} spiceterm.c 
-       gcc ${SOURCES} spiceterm.c -o $@ -lutil $(shell pkg-config --cflags gdk-3.0) $(shell pkg-config --cflags --libs spice-protocol,spice-server)
+       gcc -Werror -Wall -Wtype-limits ${SOURCES} -g -O2 -o $@ -lutil $(shell pkg-config --cflags gdk-3.0) $(shell pkg-config --cflags --libs gthread-2.0,spice-protocol,spice-server,gdk-3.0)
 
-.PHONY: test1
-test1: test_display_no_ssl
-       ./test_display_no_ssl & remote-viewer spice://localhost:5912
+keysyms.h: genkeysym.pl
+       ./genkeysym.pl >$@
 
-.PHONY: test2
-test2: spiceterm
-       ./spiceterm & remote-viewer spice://localhost:5912
+.PHONY: test
+test: spiceterm
+       ./spiceterm --noauth --keymap de & remote-viewer spice://localhost?tls-port=5900
+       #G_MESSAGES_DEBUG=all SPICE_DEBUG=1 SPICE_TICKET=test ./spiceterm & G_MESSAGES_DEBUG=all SPICE_DEBUG=1 remote-viewer --debug 'spice://localhost?tls-port=5900' --spice-ca-file /etc/pve/pve-root-ca.pem --spice-secure-channels=all
 
 .PHONY: distclean
 distclean: clean