]> git.proxmox.com Git - spiceterm.git/blame - Makefile
add install target
[spiceterm.git] / Makefile
CommitLineData
cc04455b 1
7409b684 2PROGRAMS=spiceterm
22e5ba02 3
7f3ff8c0 4HEADERS=translations.h event_loop.h glyphs.h spiceterm.h keysyms.h
1631c5a9 5SOURCES=screen.c event_loop.c input.c spiceterm.c auth-pve.c
cc04455b 6
f3112e00
DM
7#export G_MESSAGES_DEBUG=all
8#export SPICE_DEBUG=1
9
cc04455b
DM
10all: ${PROGRAMS}
11
22e5ba02 12spiceterm: ${SOURCES} ${HEADERS} spiceterm.c
c4d1da14 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)
7f3ff8c0 14
31b5cce2
DM
15genfont: genfont.c
16 gcc -g -O2 -o $@ genfont.c -Wall -D_GNU_SOURCE -lz
17
7f3ff8c0
DM
18keysyms.h: genkeysym.pl
19 ./genkeysym.pl >$@
1d7f2da4 20
ca84c6f1
DM
21.PHONY: glyphs
22glyphs: genfont
31b5cce2
DM
23 ./genfont > glyphs.h
24
b06b4cdc
DM
25.PHONY: install
26install:
27 mkdir -p ${DESTDIR}/usr/share/doc/${PACKAGE}
28 mkdir -p ${DESTDIR}/usr/share/man/man1
29 mkdir -p ${DESTDIR}/usr/bin
30 install -s -m 0755 spiceterm ${DESTDIR}/usr/bin
31
7409b684
DM
32.PHONY: test
33test: spiceterm
7f3ff8c0
DM
34 ./spiceterm --noauth --keymap de & remote-viewer spice://localhost?tls-port=5900
35 #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
2cc3e3cc
DM
36
37.PHONY: distclean
38distclean: clean
39
40.PHONY: clean
41clean:
42 rm -rf *~ ${PROGRAMS}