]> git.proxmox.com Git - spiceterm.git/blob - Makefile
buildsystem fixups
[spiceterm.git] / Makefile
1 RELEASE=4.0
2
3 PACKAGE=spiceterm
4 VERSION=2.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 PKGS := glib-2.0 gthread-2.0 spice-protocol spice-server libsasl2
18 CFLAGS += `pkg-config --cflags $(PKGS)`
19 LIBS += `pkg-config --libs $(PKGS)`
20
21 #export G_MESSAGES_DEBUG=all
22 #export SPICE_DEBUG=1
23
24 all: ${PROGRAMS}
25
26 spiceterm: ${SOURCES} ${HEADERS} spiceterm.c
27 gcc -Werror -Wall -Wl,-z,relro -Wtype-limits ${SOURCES} -g -O2 $(CFLAGS) -o $@ -lutil $(LIBS)
28
29 genfont: genfont.c
30 gcc -g -O2 -o $@ genfont.c -Wall -D_GNU_SOURCE -lz
31
32 keysyms.h: genkeysym.pl
33 ./genkeysym.pl >$@
34
35 .PHONY: glyphs
36 glyphs: genfont
37 ./genfont > glyphs.h
38
39 spiceterm.1: spiceterm.pod
40 rm -f $@
41 pod2man -n $< -s 1 -r ${VERSION} <$< >$@
42
43 .PHONY: install
44 install: spiceterm spiceterm.1
45 mkdir -p ${DESTDIR}/usr/share/doc/${PACKAGE}
46 install -m 0644 copyright ${DESTDIR}/usr/share/doc/${PACKAGE}
47 mkdir -p ${DESTDIR}/usr/share/man/man1
48 install -m 0644 spiceterm.1 ${DESTDIR}/usr/share/man/man1
49 mkdir -p ${DESTDIR}/usr/bin
50 install -s -m 0755 spiceterm ${DESTDIR}/usr/bin
51
52 .PHONY: deb
53 deb: ${DEB}
54 ${DEB}:
55 make clean
56 rsync -a . --exclude build build
57 echo "git clone git://git.proxmox.com/git/spiceterm.git\\ngit checkout ${GITVERSION}" > build/debian/SOURCE
58 cd build; dpkg-buildpackage -rfakeroot -b -us -uc
59 lintian ${DEB}
60
61 .PHONY: dinstall
62 dinstall: ${DEB}
63 dpkg -i ${DEB}
64
65
66 .PHONY: upload
67 upload: ${DEB}
68 tar cf - ${DEB} | ssh repoman@repo.proxmox.com upload
69
70 .PHONY: test
71 test: spiceterm
72 ./spiceterm --noauth --keymap de & remote-viewer spice://localhost?tls-port=5900
73 #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
74
75 .PHONY: distclean
76 distclean: clean
77
78 .PHONY: clean
79 clean:
80 rm -rf *~ ${PROGRAMS} build *.deb *.changes genfont