summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cady <d@jerkface.net>2019-10-04 16:11:03 -0400
committerAndrew Cady <d@jerkface.net>2019-10-04 16:11:03 -0400
commit3734a550eba796593f32e5b201127ecc359f07a9 (patch)
treef10f1df8cc77e5f122cc5db931dccc1eaded5b7d
parent8a34eb2de148e1e504043d4bbf98fd45b36bbc90 (diff)
Makefile: "make install" optimization
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
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))
16 16
17$(package_files): build-stamp 17$(package_files): build-stamp
18 18
19install: $(package_files) 19install: install-stamp
20
21install-stamp: $(package_files)
20 sudo dpkg -i $(package_files) 22 sudo dpkg -i $(package_files)
23 touch $@
21 24
22list: 25list:
23 @echo $(package_files) 26 @echo $(package_files)