]> git.proxmox.com Git - spiceterm.git/blob - Makefile
128a8c59c361b8e2edef1426e2a6bcad24adade1
[spiceterm.git] / Makefile
1
2 PROGRAMS=spiceterm
3
4 HEADERS=translations.h event_loop.h glyphs.h spiceterm.h
5 SOURCES=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
10 all: ${PROGRAMS}
11
12 spiceterm: ${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)
14
15 .PHONY: test
16 test: spiceterm
17 #./spiceterm & remote-viewer spice://localhost:5900
18 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
19
20 .PHONY: distclean
21 distclean: clean
22
23 .PHONY: clean
24 clean:
25 rm -rf *~ ${PROGRAMS}