5
0
mirror of git://git.proxmox.com/git/pve-common.git synced 2025-01-20 22:03:33 +03:00
pve-common/Makefile

57 lines
1.2 KiB
Makefile
Raw Normal View History

include /usr/share/dpkg/pkg-info.mk
2011-08-23 07:31:48 +02:00
PACKAGE=libpve-common-perl
ARCH=all
2013-09-02 10:45:02 +02:00
BUILDDIR ?= $(PACKAGE)-$(DEB_VERSION_UPSTREAM)
DEB=$(PACKAGE)_$(DEB_VERSION_UPSTREAM_REVISION)_$(ARCH).deb
DSC=$(PACKAGE)_$(DEB_VERSION_UPSTREAM_REVISION).dsc
2011-08-23 07:31:48 +02:00
all:
$(MAKE) -C src
2011-08-23 07:31:48 +02:00
.PHONY: dinstall
dinstall: deb
dpkg -i $(DEB)
2011-08-23 07:31:48 +02:00
$(BUILDDIR): src debian test
rm -rf $(BUILDDIR) $(BUILDDIR).tmp; mkdir $(BUILDDIR).tmp
cp -a -t $(BUILDDIR).tmp $^ Makefile
echo "git clone git://git.proxmox.com/git/pve-common.git\\ngit checkout $(shell git rev-parse HEAD)" > $(BUILDDIR).tmp/debian/SOURCE
mv $(BUILDDIR).tmp $(BUILDDIR)
.PHONY: deb
deb: $(DEB)
$(DEB): $(BUILDDIR)
cd $(BUILDDIR); dpkg-buildpackage -b -us -uc
lintian $(DEB)
2011-08-23 07:31:48 +02:00
.PHONY: dsc
dsc: $(DSC)
$(DSC): $(BUILDDIR)
cd $(BUILDDIR); dpkg-buildpackage -S -us -uc -d
lintian $(DSC)
sbuild: $(DSC)
sbuild $(DSC)
.PHONY: clean distclean
2011-08-23 07:31:48 +02:00
distclean: clean
clean:
rm -rf *~ *.deb *.changes $(PACKAGE)-[0-9]*/ *.buildinfo *.build *.dsc *.tar.?z
2011-08-23 07:31:48 +02:00
2015-06-25 11:54:31 +02:00
.PHONY: check
check:
$(MAKE) -C test check
2011-08-23 07:31:48 +02:00
.PHONY: install
install:
$(MAKE) -C src install
2011-08-23 07:31:48 +02:00
.PHONY: upload
upload: UPLOAD_DIST ?= $(DEB_DISTRIBUTION)
upload: $(DEB)
tar cf - $(DEB)|ssh -X repoman@repo.proxmox.com -- upload --product pve,pmg --dist $(UPLOAD_DIST)