2
0
mirror of https://github.com/bpkg/bpkg synced 2024-11-17 21:26:01 +00:00
bpkg/Makefile
2017-10-16 13:30:23 -04:00

13 lines
250 B
Makefile

SETUP := ./setup.sh
COMMANDS := install uninstall link unlink
.PHONY: default
default:
@echo "make: Nothing to make."
@echo "make: Try one of the following:"
@for c in $(COMMANDS); do printf '\t%s\n' "make $$c"; done
$(COMMANDS):
@$(SETUP) $@