5
0
mirror of git://git.proxmox.com/git/spiceterm.git synced 2025-01-18 06:03:56 +03:00
spiceterm/Makefile
2013-10-29 09:45:21 +01:00

28 lines
918 B
Makefile

PROGRAMS=spiceterm
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
#export G_MESSAGES_DEBUG=all
#export SPICE_DEBUG=1
all: ${PROGRAMS}
spiceterm: ${SOURCES} ${HEADERS} spiceterm.c
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)
keysyms.h: genkeysym.pl
./genkeysym.pl >$@
.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
.PHONY: clean
clean:
rm -rf *~ ${PROGRAMS}