You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bpkg/lib/suggest/Makefile

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