mirror of
https://github.com/bpkg/bpkg
synced 2024-11-19 15:25:36 +00:00
0617f26461
* Changed how to execute shell commands inside output strings * Removed the extra { } * Drop changes to JSON files inside lib/json
15 lines
170 B
Makefile
Executable File
15 lines
170 B
Makefile
Executable File
|
|
BIN ?= suggest
|
|
PREFIX ?= /usr/local
|
|
|
|
install:
|
|
cp suggest.sh $(PREFIX)/bin/$(BIN)
|
|
|
|
uninstall:
|
|
rm -f $(PREFIX)/bin/$(BIN)
|
|
|
|
example.sh:
|
|
./example.sh
|
|
|
|
.PHONY: example.sh
|