From 3b45559e00772ca48c7dfa8e4846233f989ff555 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Mon, 22 Jan 2024 11:51:42 +0100 Subject: [PATCH] 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 --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 2e506ad..3de2ff0 100644 --- a/Makefile +++ b/Makefile @@ -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) -- 2.39.5