]> git.proxmox.com Git - pve-common.git/blob - Makefile
cli: remove all output formatter magic from CLIHandler
[pve-common.git] / Makefile
1 VERSION=5.0
2 PKGREL=37
3
4 PACKAGE=libpve-common-perl
5
6 ARCH=all
7 GITVERSION:=$(shell git rev-parse HEAD)
8
9 BUILDDIR ?= build
10
11 DEB=${PACKAGE}_${VERSION}-${PKGREL}_${ARCH}.deb
12
13 all: ${DEB}
14
15 .PHONY: dinstall
16 dinstall: deb
17 dpkg -i ${DEB}
18
19
20 .PHONY: deb
21 deb ${DEB}: check
22 rm -rf ${BUILDDIR}
23 rsync -a src/ ${BUILDDIR}
24 rsync -a debian/ ${BUILDDIR}/debian
25 echo "git clone git://git.proxmox.com/git/pve-common.git\\ngit checkout ${GITVERSION}" > ${BUILDDIR}/debian/SOURCE
26 cd ${BUILDDIR}; dpkg-buildpackage -b -us -uc
27 lintian ${DEB}
28
29 .PHONY: clean distclean
30 distclean: clean
31 clean:
32 rm -rf *~ *.deb *.changes ${BUILDDIR} *.buildinfo
33
34 .PHONY: check
35 check:
36 $(MAKE) -C test check
37
38 .PHONY: upload
39 upload: ${DEB}
40 tar cf - ${DEB}|ssh -X repoman@repo.proxmox.com -- upload --product pve,pmg --dist stretch
41