mirror of
git://git.proxmox.com/git/pve-apiclient.git
synced 2024-12-21 13:34:10 +03:00
buildsys: cleanup deb/dsc targets
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
1b02346293
commit
4b2de6c1e7
8
Makefile
8
Makefile
@ -14,7 +14,6 @@ GITVERSION:=$(shell git rev-parse HEAD)
|
||||
|
||||
all: $(DEB)
|
||||
|
||||
.PHONY: $(BUILDSRC)
|
||||
$(BUILDSRC):
|
||||
rm -rf $@ $@.tmp
|
||||
cp -a src $@.tmp
|
||||
@ -24,12 +23,13 @@ $(BUILDSRC):
|
||||
|
||||
.PHONY: deb
|
||||
deb $(DEB): $(BUILDSRC)
|
||||
cd $(BUILDSRC); dpkg-buildpackage -rfakeroot -b -us -uc
|
||||
cd $(BUILDSRC); dpkg-buildpackage -b -us -uc
|
||||
lintian $(DEB)
|
||||
|
||||
.PHONY: dsc
|
||||
dsc: $(BUILDSRC)
|
||||
cd $(BUILDSRC); dpkg-buildpackage -S -us -uc -d -nc
|
||||
dsc: $(DSC)
|
||||
$(DSC): $(BUILDSRC)
|
||||
cd $(BUILDSRC); dpkg-buildpackage -S -us -uc -d
|
||||
lintian $(DSC)
|
||||
|
||||
.PHONY: upload
|
||||
|
Loading…
Reference in New Issue
Block a user