From 21a44ff8401925ebd1c0d4930c9bd913b6d2fe5f Mon Sep 17 00:00:00 2001 From: yyp Date: Tue, 27 Apr 2021 17:06:16 +0000 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. git-svn-id: file:///srv/svn/repo/suika/trunk@510 f0ae65fe-ee39-954e-97ec-027ff2717ef4 --- 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