mirror of
https://github.com/pepa65/tldr-bash-client.git
synced 2024-11-10 21:26:58 +01:00
9 lines
122 B
Makefile
9 lines
122 B
Makefile
|
BIN ?= tldr
|
||
|
PREFIX ?= /usr/local
|
||
|
|
||
|
install:
|
||
|
cp $(BIN) $(PREFIX)/bin/$(BIN)
|
||
|
|
||
|
uninstall:
|
||
|
rm -f -- $(PREFIX)/bin/$(BIN)
|