2
0
mirror of https://github.com/bpkg/bpkg synced 2024-11-19 15:25:36 +00:00
bpkg/lib/suggest/Makefile
Abdelkafi Ahmed 0617f26461 Replace with $( ) inside strings and in commands (#77)
* Changed how to execute shell commands inside output strings

* Removed the extra { }

* Drop changes to JSON files inside lib/json
2017-02-06 10:28:58 -05:00

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