]> git.proxmox.com Git - spiceterm.git/blame - Makefile
build debian packages
[spiceterm.git] / Makefile
CommitLineData
3777ece9
DM
1RELEASE=3.1
2
3PACKAGE=spiceterm
4VERSION=1.0
5PACKAGERELEASE=1
6
7ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
8GITVERSION:=$(shell cat .git/refs/heads/master)
9
10DEB=${PACKAGE}_${VERSION}-${PACKAGERELEASE}_${ARCH}.deb
cc04455b 11
7409b684 12PROGRAMS=spiceterm
22e5ba02 13
7f3ff8c0 14HEADERS=translations.h event_loop.h glyphs.h spiceterm.h keysyms.h
1631c5a9 15SOURCES=screen.c event_loop.c input.c spiceterm.c auth-pve.c
cc04455b 16
f3112e00
DM
17#export G_MESSAGES_DEBUG=all
18#export SPICE_DEBUG=1
19
cc04455b
DM
20all: ${PROGRAMS}
21
22e5ba02 22spiceterm: ${SOURCES} ${HEADERS} spiceterm.c
c4d1da14 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)
7f3ff8c0 24
31b5cce2
DM
25genfont: genfont.c
26 gcc -g -O2 -o $@ genfont.c -Wall -D_GNU_SOURCE -lz
27
7f3ff8c0
DM
28keysyms.h: genkeysym.pl
29 ./genkeysym.pl >$@
1d7f2da4 30
ca84c6f1
DM
31.PHONY: glyphs
32glyphs: genfont
31b5cce2
DM
33 ./genfont > glyphs.h
34
b06b4cdc 35.PHONY: install
3777ece9 36install: spiceterm
b06b4cdc 37 mkdir -p ${DESTDIR}/usr/share/doc/${PACKAGE}
3777ece9 38 install -m 0644 copyright ${DESTDIR}/usr/share/doc/${PACKAGE}
b06b4cdc
DM
39 mkdir -p ${DESTDIR}/usr/share/man/man1
40 mkdir -p ${DESTDIR}/usr/bin
41 install -s -m 0755 spiceterm ${DESTDIR}/usr/bin
42
3777ece9
DM
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
52dinstall: ${DEB}
53 dpkg -i ${DEB}
54
7409b684
DM
55.PHONY: test
56test: spiceterm
7f3ff8c0
DM
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
2cc3e3cc
DM
59
60.PHONY: distclean
61distclean: clean
62
63.PHONY: clean
64clean:
3777ece9 65 rm -rf *~ ${PROGRAMS} build *.deb *.changes