]> git.proxmox.com Git - pve-container.git/blame - Makefile
don't pull HA modules for doc-generation
[pve-container.git] / Makefile
CommitLineData
de81c147 1VERSION=1.0
f76a2828 2PACKAGE=pve-container
21078664 3PKGREL=94
f76a2828
DM
4
5GITVERSION:=$(shell cat .git/refs/heads/master)
6
7ARCH:=all
8
9DEB=${PACKAGE}_${VERSION}-${PKGREL}_${ARCH}.deb
10
11all: ${DEB}
12
13.PHONY: dinstall
14dinstall: ${DEB}
15 dpkg -i ${DEB}
16
6535fcdb 17.PHONY: deb
a3fe0ccf
WB
18deb: ${DEB}
19${DEB}:
f76a2828
DM
20 rm -rf build
21 mkdir build
22 rsync -a src/ build
23 rsync -a debian/ build/debian
24 echo "git clone git://git.proxmox.com/git/pve-container\\ngit checkout ${GITVERSION}" > build/debian/SOURCE
25 cd build; dpkg-buildpackage -rfakeroot -b -us -uc
26 lintian ${DEB}
27
28.PHONY: clean
29clean:
30 make -C src clean
31 rm -rf build *.deb ${PACKAGE}-*.tar.gz *.changes
32 find . -name '*~' -exec rm {} ';'
33
34.PHONY: distclean
35distclean: clean
36
37.PHONY: upload
38upload: ${DEB}
c9c3758d 39 tar cf - ${DEB} | ssh repoman@repo.proxmox.com upload