summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cady <d@jerkface.net>2019-10-04 16:11:03 -0400
committerAndrew Cady <d@jerkface.net>2021-03-13 10:46:55 -0500
commitd7151bb014a53d002219d1b92e26140597046176 (patch)
tree7cf2f994fa1e1dcaf4d8650be17def5f5c771444
parentaf22a23fa41bf200b929d1d8c0e8958c652790e3 (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)