]> git.proxmox.com Git - pve-qemu.git/blob - Makefile
merge fix for CVE-2019-14378
[pve-qemu.git] / Makefile
1 include /usr/share/dpkg/pkg-info.mk
2 include /usr/share/dpkg/architecture.mk
3
4 PACKAGE = pve-qemu-kvm
5
6 SRCDIR := qemu
7 BUILDDIR ?= ${PACKAGE}-${DEB_VERSION_UPSTREAM}
8
9 GITVERSION := $(shell git rev-parse HEAD)
10
11 DEB = ${PACKAGE}_${DEB_VERSION_UPSTREAM_REVISION}_${DEB_BUILD_ARCH}.deb
12 DEB_DBG = ${PACKAGE}-dbg_${DEB_VERSION_UPSTREAM_REVISION}_${DEB_BUILD_ARCH}.deb
13 DEBS = $(DEB) $(DEB_DBG)
14
15 all: $(DEBS)
16
17 .PHONY: submodule
18 submodule:
19 test -f "${SRCDIR}/configure" || git submodule update --init --recursive
20
21 $(BUILDDIR): keycodemapdb | submodule
22 rm -rf $(BUILDDIR)
23 cp -a $(SRCDIR) $(BUILDDIR)
24 cp -a debian $(BUILDDIR)/debian
25 rm -rf $(BUILDDIR)/ui/keycodemapdb
26 cp -a keycodemapdb $(BUILDDIR)/ui/
27 echo "git clone git://git.proxmox.com/git/pve-qemu.git\\ngit checkout $(GITVERSION)" > $(BUILDDIR)/debian/SOURCE
28
29 .PHONY: deb kvm
30 deb kvm: $(DEBS)
31 $(DEB_DBG): $(DEB)
32 $(DEB): $(BUILDDIR)
33 cd $(BUILDDIR); dpkg-buildpackage -b -us -uc -j
34 lintian $(DEBS)
35
36 .PHONY: update
37 update:
38 cd $(SRCDIR) && git submodule deinit ui/keycodemapdb || true
39 rm -rf $(SRCDIR)/ui/keycodemapdb
40 mkdir $(SRCDIR)/ui/keycodemapdb
41 cd $(SRCDIR) && git submodule update --init ui/keycodemapdb
42 rm -rf keycodemapdb
43 mkdir keycodemapdb
44 cp -R $(SRCDIR)/ui/keycodemapdb/* keycodemapdb/
45 git add keycodemapdb
46
47 .PHONY: upload
48 upload: $(DEBS)
49 tar cf - ${DEBS} | ssh repoman@repo.proxmox.com upload --product pve --dist buster
50
51 .PHONY: distclean clean
52 distclean: clean
53 clean:
54 rm -rf $(BUILDDIR) $(PACKAGE)*.deb *.buildinfo *.changes
55
56 .PHONY: dinstall
57 dinstall: $(DEBS)
58 dpkg -i $(DEBS)