Reintroduce Makefile that invokes setup.sh

pull/97/head
Joseph Werle 7 years ago committed by Joseph Werle
parent 18a66dbddc
commit 72c9a90e3f

@ -0,0 +1,12 @@
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) $@
Loading…
Cancel
Save