From 3734a550eba796593f32e5b201127ecc359f07a9 Mon Sep 17 00:00:00 2001 From: Andrew Cady Date: Fri, 4 Oct 2019 16:11:03 -0400 Subject: Makefile: "make install" optimization --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4429b4424..b37a867dd 100644 --- a/Makefile +++ b/Makefile @@ -16,8 +16,11 @@ package_files = $(addsuffix _$(version)_$(arch).deb,$(addprefix ../,$(packages)) $(package_files): build-stamp -install: $(package_files) +install: install-stamp + +install-stamp: $(package_files) sudo dpkg -i $(package_files) + touch $@ list: @echo $(package_files) -- cgit v1.2.3