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

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) $@