From bc74478f80d4afc0d35482587c3979432b1e36d2 Mon Sep 17 00:00:00 2001 From: Alexey Yerin Date: Tue, 27 Apr 2021 18:51:46 +0300 Subject: [PATCH] Makefile: mark soju and sojuctl as .PHONY Otherwise running `make` didn't do anything on a non-clean state. Go deals with changed files automatically, and there's no real need to explicitly specify them. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 79face4..bcf4e07 100644 --- a/Makefile +++ b/Makefile @@ -28,3 +28,5 @@ install: all cp -f soju sojuctl $(DESTDIR)$(PREFIX)/$(BINDIR) cp -f doc/soju.1 $(DESTDIR)$(PREFIX)/$(MANDIR)/man1 cp -f config.in $(DESTDIR)/etc/soju/config + +.PHONY: soju sojuctl