Fix install target in Makefile - sacc - sacc(omys), simple console gopher client
HTML git clone git://bitreich.org/sacc/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/sacc/
DIR Log
DIR Files
DIR Refs
DIR Tags
DIR LICENSE
---
DIR commit cea0177aa0fa82195efa6dd16c15dcc47af5bba5
DIR parent 54870b8266bdddd39083e5fc4f87cca3014a1152
HTML Author: Quentin Rameau <quinq@fifth.space>
Date: Mon, 3 Jul 2017 00:10:12 +0200
Fix install target in Makefile
Diffstat:
M Makefile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
DIR diff --git a/Makefile b/Makefile
@@ -15,9 +15,9 @@ $(BIN): config.mk $(OBJ)
clean:
rm -f $(BIN) $(OBJ)
-install:
+install: $(BIN)
mkdir -p $(PREFIX)/bin/
- cp $(BIN) $(PREFIX)/bin/
+ cp -f $(BIN) $(PREFIX)/bin/
chmod 555 $(PREFIX)/bin/$(BIN)
uninstall: