commit 0e69078b1129de305b6d4fc7cd470c486be5c2e8
parent b34bf4f55dbabcf8796b0a395a8bc7b80f9e8a33
Author: parazyd <parazyd@dyne.org>
Date: Thu, 14 May 2020 00:18:52 +0200
Tweak makefile.
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -5,7 +5,6 @@ PREFIX = /usr/local
BIN = p
all:
- @echo Run "make install" to install to $(DESTDIR)$(PREFIX)
install:
cp -f $(BIN) $(DESTDIR)$(PREFIX)/bin
@@ -13,3 +12,5 @@ install:
uninstall:
rm -f $(DESTDIR)$(PREFIX)/bin/$(BIN)
+
+.PHONY: all install uninstall