2
0
mirror of https://github.com/bpkg/bpkg synced 2024-11-02 03:40:28 +00:00
bpkg/lib/suggest/Makefile
Ben Peachey 1107d7608c Changes various (text) files to *not* be executable
This change affects LICENSE, README.md, package.json and Makefile files.
2018-02-02 11:16:54 -05:00

15 lines
170 B
Makefile

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