]> git.proxmox.com Git - pve-qemu.git/blame - Makefile
bump version to 4.0.0-4
[pve-qemu.git] / Makefile
CommitLineData
06299321
TL
1include /usr/share/dpkg/pkg-info.mk
2include /usr/share/dpkg/architecture.mk
95259824 3
06299321 4PACKAGE = pve-qemu-kvm
95259824
WB
5
6SRCDIR := qemu
06299321 7BUILDDIR ?= ${PACKAGE}-${DEB_VERSION_UPSTREAM}
95259824 8
d2494dd2 9GITVERSION := $(shell git rev-parse HEAD)
95259824 10
06299321
TL
11DEB = ${PACKAGE}_${DEB_VERSION_UPSTREAM_REVISION}_${DEB_BUILD_ARCH}.deb
12DEB_DBG = ${PACKAGE}-dbg_${DEB_VERSION_UPSTREAM_REVISION}_${DEB_BUILD_ARCH}.deb
95259824
WB
13DEBS = $(DEB) $(DEB_DBG)
14
95259824
WB
15all: $(DEBS)
16
17.PHONY: submodule
18submodule:
d7722e1a 19 test -f "${SRCDIR}/configure" || git submodule update --init --recursive
95259824 20
06299321
TL
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
06299321 28
95259824
WB
29.PHONY: deb kvm
30deb kvm: $(DEBS)
31$(DEB_DBG): $(DEB)
06299321
TL
32$(DEB): $(BUILDDIR)
33 cd $(BUILDDIR); dpkg-buildpackage -b -us -uc -j
34 lintian $(DEBS)
95259824 35
6838f038
WB
36.PHONY: update
37update:
06299321
TL
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
6838f038
WB
42 rm -rf keycodemapdb
43 mkdir keycodemapdb
06299321 44 cp -R $(SRCDIR)/ui/keycodemapdb/* keycodemapdb/
6838f038
WB
45 git add keycodemapdb
46
95259824
WB
47.PHONY: upload
48upload: $(DEBS)
fbbadb8b 49 tar cf - ${DEBS} | ssh repoman@repo.proxmox.com upload --product pve --dist buster
95259824 50
06299321 51.PHONY: distclean clean
95259824 52distclean: clean
95259824 53clean:
0a321ffd 54 rm -rf $(BUILDDIR) $(PACKAGE)*.deb *.buildinfo *.changes
95259824
WB
55
56.PHONY: dinstall
57dinstall: $(DEBS)
58 dpkg -i $(DEBS)