5
0
mirror of git://git.proxmox.com/git/pve-guest-common.git synced 2024-12-22 13:34:00 +03:00
pve-guest-common/Makefile

48 lines
983 B
Makefile
Raw Permalink Normal View History

include /usr/share/dpkg/pkg-info.mk
2017-01-25 11:13:35 +03:00
PACKAGE=libpve-guest-common-perl
DEB=$(PACKAGE)_$(DEB_VERSION)_all.deb
DSC=$(PACKAGE)_$(DEB_VERSION).dsc
BUILDDIR ?= $(PACKAGE)-$(DEB_VERSION)
2017-01-25 11:13:35 +03:00
all:
$(BUILDDIR):
rm -rf $@ $@.tmp
cp -a src $@.tmp
cp -a debian $@.tmp/
echo "git clone git://git.proxmox.com/git/pve-guest-common.git\\ngit checkout $(GITVERSION)" > $@.tmp/debian/SOURCE
mv $@.tmp $@
2017-01-25 11:13:35 +03:00
.PHONY: deb
deb: $(DEB)
$(DEB): $(BUILDDIR)
cd $(BUILDDIR); dpkg-buildpackage -b -us -uc
lintian $(DEB)
2017-01-25 11:13:35 +03:00
.PHONY: dsc
dsc:
$(MAKE) $(DSC)
lintian $(DSC)
$(DSC): $(BUILDDIR)
cd $(BUILDDIR); dpkg-buildpackage -S -us -uc -d -nc
sbuild: $(DSC)
sbuild $(DSC)
2017-01-25 11:13:35 +03:00
.PHONY: upload
upload: UPLOAD_DIST ?= $(DEB_DISTRIBUTION)
upload: $(DEB)
tar cf - $(DEB) | ssh repoman@repo.proxmox.com -- upload --product pve --dist $(UPLOAD_DIST)
2017-01-25 11:13:35 +03:00
distclean: clean
clean:
rm -rf $(PACKAGE)-[0-9]*/ *.deb *.dsc *.changes *.buildinfo *.build $(PACKAGE)*.tar*
2017-01-25 11:13:35 +03:00
.PHONY: dinstall
dinstall: $(DEB)
dpkg -i $(DEB)