mirror of
https://github.com/bpkg/bpkg
synced 2024-11-17 21:26:01 +00:00
13 lines
250 B
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) $@
|
||
|
|