mirror of
git://git.proxmox.com/git/pve-firewall.git
synced 2025-01-02 01:18:00 +03:00
buildsys: avoid that the dinstall target always triggers a rebuild
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
29b48c381d
commit
e59c8fd1b5
7
Makefile
7
Makefile
@ -14,8 +14,8 @@ DEBS=$(DEB) $(DEB2)
|
||||
all: $(DEBS)
|
||||
|
||||
.PHONY: dinstall
|
||||
dinstall: deb
|
||||
dpkg -i $(DEBS)
|
||||
dinstall: $(DEB)
|
||||
dpkg -i $<
|
||||
|
||||
$(BUILDDIR):
|
||||
rm -rf $(BUILDDIR)
|
||||
@ -25,7 +25,7 @@ $(BUILDDIR):
|
||||
.PHONY: deb
|
||||
deb: $(DEBS)
|
||||
$(DEB2): $(DEB)
|
||||
$(DEB): $(BUILDDIR) check
|
||||
$(DEB): $(BUILDDIR)
|
||||
cd $(BUILDDIR); dpkg-buildpackage -b -us -uc
|
||||
lintian $(DEBS)
|
||||
|
||||
@ -41,7 +41,6 @@ $(DSC): $(BUILDDIR)
|
||||
sbuild: $(DSC)
|
||||
sbuild $(DSC)
|
||||
|
||||
.PHONY: check
|
||||
check:
|
||||
make -C test check
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user