]> git.proxmox.com Git - spiceterm.git/blob - Makefile
93d8ae3b252d3884c1870f11484c79a18961ae54
[spiceterm.git] / Makefile
1 RELEASE=3.1
2
3 PACKAGE=spiceterm
4 VERSION=1.0
5 PACKAGERELEASE=1
6
7 ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
8 GITVERSION:=$(shell cat .git/refs/heads/master)
9
10 DEB=${PACKAGE}_${VERSION}-${PACKAGERELEASE}_${ARCH}.deb
11
12 PROGRAMS=spiceterm
13
14 HEADERS=translations.h event_loop.h glyphs.h spiceterm.h keysyms.h
15 SOURCES=screen.c event_loop.c input.c spiceterm.c auth-pve.c
16
17 #export G_MESSAGES_DEBUG=all
18 #export SPICE_DEBUG=1
19
20 all: ${PROGRAMS}
21
22 spiceterm: ${SOURCES} ${HEADERS} spiceterm.c
23 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)
24
25 genfont: genfont.c
26 gcc -g -O2 -o $@ genfont.c -Wall -D_GNU_SOURCE -lz
27
28 keysyms.h: genkeysym.pl
29 ./genkeysym.pl >$@
30
31 .PHONY: glyphs
32 glyphs: genfont
33 ./genfont > glyphs.h
34
35 .PHONY: install
36 install: spiceterm
37 mkdir -p ${DESTDIR}/usr/share/doc/${PACKAGE}
38 install -m 0644 copyright ${DESTDIR}/usr/share/doc/${PACKAGE}
39 mkdir -p ${DESTDIR}/usr/share/man/man1
40 mkdir -p ${DESTDIR}/usr/bin
41 install -s -m 0755 spiceterm ${DESTDIR}/usr/bin
42
43 .PHONY: deb
44 ${DEB} deb:
45 make clean
46 rsync -a . --exclude build build
47 echo "git clone git://git.proxmox.com/git/spiceterm.git\\ngit checkout ${GITVERSION}" > build/debian/SOURCE
48 cd build; dpkg-buildpackage -rfakeroot -b -us -uc
49 lintian ${DEB}
50
51 .PHONY: dinstall
52 dinstall: ${DEB}
53 dpkg -i ${DEB}
54
55 .PHONY: test
56 test: spiceterm
57 ./spiceterm --noauth --keymap de & remote-viewer spice://localhost?tls-port=5900
58 #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
59
60 .PHONY: distclean
61 distclean: clean
62
63 .PHONY: clean
64 clean:
65 rm -rf *~ ${PROGRAMS} build *.deb *.changes