diff options
| author | Thomas Lamprecht <t.lamprecht@proxmox.com> | 2024-01-22 11:51:42 +0100 |
|---|---|---|
| committer | Thomas Lamprecht <t.lamprecht@proxmox.com> | 2024-01-22 11:51:44 +0100 |
| commit | 3b45559e00772ca48c7dfa8e4846233f989ff555 (patch) | |
| tree | 32942a917c43f65ef9d4a5791fbb90d307666098 | |
| parent | 8ded42918dc38243ead8a2019aebe3b8f23c2621 (diff) | |
buildsys: add explicit default target
Currently the dinstall was the default target due to being the first
one listed, that's rather unusual compared to all of our other repos,
so align this one to our unwritten norm of using the `deb` one as
default target.
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
| -rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -7,6 +7,8 @@ BUILDDIR ?= $(PACKAGE)-$(DEB_VERSION_UPSTREAM) DEB=$(PACKAGE)_$(DEB_VERSION_UPSTREAM_REVISION)_all.deb DSC=$(PACKAGE)_$(DEB_VERSION_UPSTREAM_REVISION).dsc +all: deb + .PHONY: dinstall dinstall: deb dpkg -i $(DEB) |
