You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
PREFIX ?= /usr/local
|
|
|
|
install:
|
|
install -Dm755 piglet $(PREFIX)/bin/piglet
|
|
install -Dm644 completion.bash $(PREFIX)/share/bash-completion/completions/piglet
|
|
|
|
uninstall:
|
|
rm -v $(PREFIX)/bin/piglet
|
|
rm -v $(PREFIX)/share/bash-completion/completions/piglet
|