mirror of
git://git.proxmox.com/git/spiceterm.git
synced 2024-12-22 13:34:06 +03:00
34 lines
1006 B
Makefile
34 lines
1006 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) $(shell pkg-config --cflags --libs gthread-2.0,spice-protocol,spice-server)
|
|
|
|
genfont: genfont.c
|
|
gcc -g -O2 -o $@ genfont.c -Wall -D_GNU_SOURCE -lz
|
|
|
|
keysyms.h: genkeysym.pl
|
|
./genkeysym.pl >$@
|
|
|
|
glyphs.h: genfont
|
|
./genfont > glyphs.h
|
|
|
|
.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}
|