mirror of
https://github.com/bpkg/bpkg
synced 2024-11-16 00:12:52 +00:00
1107d7608c
This change affects LICENSE, README.md, package.json and Makefile files.
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
|