]> git.proxmox.com Git - spiceterm.git/blob - Makefile
e9660d2ccafb2c57778697257010827fcb829408
[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 glyphs.h: genfont
22 ./genfont > glyphs.h
23
24 .PHONY: test
25 test: spiceterm
26 ./spiceterm --noauth --keymap de & remote-viewer spice://localhost?tls-port=5900
27 #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
28
29 .PHONY: distclean
30 distclean: clean
31
32 .PHONY: clean
33 clean:
34 rm -rf *~ ${PROGRAMS}