From 69a6b5e40b3ca0df779beac9edf6f1b3c1ecb0bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?poljar=20=28Damir=20Jeli=C4=87=29?= Date: Wed, 31 Jan 2018 13:56:31 +0100 Subject: [PATCH] Makefile: Mark the lib phony as well. --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 45f1eba..ab5a324 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: install install-lib +.PHONY: install install-lib phony WEECHAT_HOME ?= $(HOME)/.weechat PREFIX ?= $(WEECHAT_HOME) @@ -11,5 +11,7 @@ install: install-lib install-lib: $(lib) -$(DESTDIR)$(PREFIX)/python/matrix/%.py: matrix/%.py +phony: + +$(DESTDIR)$(PREFIX)/python/matrix/%.py: matrix/%.py phony install -Dm644 $< $@