]> git.proxmox.com Git - spiceterm.git/blob - Makefile
add install target
[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: install
26 install:
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
32 .PHONY: test
33 test: spiceterm
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
36
37 .PHONY: distclean
38 distclean: clean
39
40 .PHONY: clean
41 clean:
42 rm -rf *~ ${PROGRAMS}