PACKAGE=lxcfs PKGVER != dpkg-parsechangelog -Sversion | cut -d- -f1 PKGREL != dpkg-parsechangelog -Sversion | cut -d- -f2 SRCDIR=${PACKAGE} BUILDSRC := $(SRCDIR).tmp ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH) GITVERSION:=$(shell git rev-parse HEAD) DEB1=${PACKAGE}_${PKGVER}-${PKGREL}_${ARCH}.deb DEB2=${PACKAGE}-dbgsym_${PKGVER}-${PKGREL}_${ARCH}.deb DEBS=$(DEB1) $(DEB2) all: ${DEB} .PHONY: submodule submodule: test -f "${SRCDIR}/README" || git submodule update --init .PHONY: deb deb: $(DEBS) $(DEB2): $(DEB1) $(DEB1): | submodule rm -f *.deb rm -rf $(BUILDSRC) cp -a $(SRCDIR) $(BUILDSRC) cp -a debian $(BUILDSRC)/debian echo "git clone git://git.proxmox.com/git/lxc.git\\ngit checkout $(GITVERSION)" > $(BUILDSRC)/debian/SOURCE cd $(BUILDSRC); dpkg-buildpackage -rfakeroot -b -us -uc #lintian $(DEBS) .PHONY: upload upload: $(DEBS) tar cf - ${DEBS} | ssh repoman@repo.proxmox.com upload --product pve --dist stretch distclean: clean .PHONY: clean clean: rm -rf $(BUILDSRC) *_${ARCH}.deb *.changes *.dsc *.buildinfo .PHONY: dinstall dinstall: $(DEBS) dpkg -i $(DEBS)