2
0
mirror of https://github.com/pepa65/tldr-bash-client.git synced 2024-11-10 21:26:58 +01:00
tldr-bash-client/Makefile

9 lines
122 B
Makefile
Raw Normal View History

2017-02-22 13:57:27 +01:00
BIN ?= tldr
PREFIX ?= /usr/local
install:
cp $(BIN) $(PREFIX)/bin/$(BIN)
uninstall:
rm -f -- $(PREFIX)/bin/$(BIN)