mirror of
https://github.com/bpkg/bpkg
synced 2024-11-09 19:10:24 +00:00
15 lines
164 B
Makefile
15 lines
164 B
Makefile
|
|
BIN ?= term
|
|
PREFIX ?= /usr/local
|
|
|
|
install:
|
|
cp term.sh $(PREFIX)/bin/$(BIN)
|
|
|
|
uninstall:
|
|
rm -f $(PREFIX)/bin/$(BIN)
|
|
|
|
example.sh:
|
|
./example.sh
|
|
|
|
.PHONY: example.sh
|