]> git.proxmox.com Git - spiceterm.git/blame_incremental - Makefile
use kvm keymap files
[spiceterm.git] / Makefile
... / ...
CommitLineData
1
2PROGRAMS=spiceterm
3
4HEADERS=translations.h event_loop.h glyphs.h spiceterm.h keysyms.h
5SOURCES=screen.c event_loop.c input.c spiceterm.c auth-pve.c
6
7#export G_MESSAGES_DEBUG=all
8#export SPICE_DEBUG=1
9
10all: ${PROGRAMS}
11
12spiceterm: ${SOURCES} ${HEADERS} spiceterm.c
13 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)
14
15keysyms.h: genkeysym.pl
16 ./genkeysym.pl >$@
17
18.PHONY: test
19test: spiceterm
20 ./spiceterm --noauth --keymap de & remote-viewer spice://localhost?tls-port=5900
21 #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
22
23.PHONY: distclean
24distclean: clean
25
26.PHONY: clean
27clean:
28 rm -rf *~ ${PROGRAMS}