5
0
mirror of git://git.proxmox.com/git/pve-ha-manager.git synced 2025-01-06 17:18:00 +03:00
pve-ha-manager/Makefile

60 lines
1.3 KiB
Makefile
Raw Normal View History

include /usr/share/dpkg/default.mk
2015-02-18 13:30:48 +03:00
PACKAGE=pve-ha-manager
2015-02-19 10:59:01 +03:00
SIMPACKAGE=pve-ha-simulator
2014-12-01 08:22:52 +03:00
GITVERSION:=$(shell git rev-parse HEAD)
BUILDDIR ?= $(PACKAGE)-$(DEB_VERSION)
2015-02-18 13:30:48 +03:00
DEB=$(PACKAGE)_$(DEB_VERSION)_$(DEB_HOST_ARCH).deb
DBG_DEB=$(PACKAGE)-dbgsym_$(DEB_VERSION)_$(DEB_HOST_ARCH).deb
DSC=$(PACKAGE)_$(DEB_VERSION).dsc
SIMDEB=$(SIMPACKAGE)_$(DEB_VERSION)_all.deb
SIMDSC=$(SIMPACKAGE)_$(DEB_VERSION).dsc
2015-02-18 13:30:48 +03:00
2017-10-13 12:26:00 +03:00
all: deb
2015-02-18 13:30:48 +03:00
$(BUILDDIR):
rm -rf $@ $@.tmp
cp -a src/ $@.tmp
cp -a debian $@.tmp/
echo "git clone git://git.proxmox.com/git/pve-ha-manager.git\\ngit checkout $(GITVERSION)" > $@.tmp/debian/SOURCE
mv $@.tmp $@
.PHONY: dinstall
2017-02-06 17:32:34 +03:00
dinstall: $(DEB) $(SIMDEB)
dpkg -i $(DEB) $(SIMDEB)
2015-02-18 13:30:48 +03:00
2017-02-06 17:32:34 +03:00
.PHONY: deb
deb: $(DEB) $(SIMDEB)
$(DEB) $(DBG_DEB): $(BUILDDIR)
cd $(BUILDDIR); dpkg-buildpackage -b -us -uc
lintian $(DEB)
lintian $(SIMDEB)
2014-12-01 08:22:52 +03:00
.PHONY: dsc
dsc:
$(MAKE) clean
$(MAKE) $(DSC)
lintian $(DSC)
$(DSC): $(BUILDDIR)
cd $(BUILDDIR); dpkg-buildpackage -S -us -uc -d
sbuild: $(DSC)
sbuild $(DSC)
2014-12-01 09:06:38 +03:00
.PHONY: clean
clean:
2015-03-12 14:20:18 +03:00
make -C src clean
rm -rf $(PACKAGE)-[0-9]*/ *.dsc *.deb $(PACKAGE)*.tar* *.changes *.build *.buildinfo
2015-02-18 13:30:48 +03:00
.PHONY: distclean
distclean: clean
2014-12-01 09:06:38 +03:00
2015-03-13 12:54:32 +03:00
.PHONY: upload
upload: UPLOAD_DIST ?= $(DEB_DISTRIBUTION)
upload: $(DEB) $(SIMDEB)
tar cf - $(DEB) $(DBG_DEB) $(SIMDEB)|ssh repoman@repo.proxmox.com -- upload --product pve --dist $(UPLOAD_DIST) --arch $(DEB_HOST_ARCH)