]> git.proxmox.com Git - spiceterm.git/blob - Makefile
iscan all font files (include arabic font)
[spiceterm.git] / Makefile
1
2 PROGRAMS=spiceterm
3
4 HEADERS=translations.h event_loop.h glyphs.h spiceterm.h keysyms.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) $(shell pkg-config --cflags --libs gthread-2.0,spice-protocol,spice-server)
14
15 genfont: genfont.c
16 gcc -g -O2 -o $@ genfont.c -Wall -D_GNU_SOURCE -lz
17
18 keysyms.h: genkeysym.pl
19 ./genkeysym.pl >$@
20
21 .PHONY: glyphs
22 glyphs: genfont
23 ./genfont > glyphs.h
24
25 .PHONY: test
26 test: spiceterm
27 ./spiceterm --noauth --keymap de & remote-viewer spice://localhost?tls-port=5900
28 #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
29
30 .PHONY: distclean
31 distclean: clean
32
33 .PHONY: clean
34 clean:
35 rm -rf *~ ${PROGRAMS}