mirror of
https://github.com/bpkg/bpkg
synced 2024-11-17 21:26:01 +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
|