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/init/Makefile

16 lines
181 B
Makefile

BIN ?= bpkg-init
PREFIX ?= /usr/local
install:
cp bpkg-init.sh $(PREFIX)/bin/$(BIN)
uninstall:
rm -f $(PREFIX)/bin/$(BIN)
bpkg-init.sh:
./bpkg-init.sh
.PHONY: bpkg-init.sh