Skip to content

Commit

Permalink
Reintroduce Makefile that invokes setup.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
jwerle committed Oct 16, 2017
1 parent 18a66db commit 72c9a90
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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) $@

0 comments on commit 72c9a90

Please sign in to comment.