Splits up Makefile. Adds all rule and phony tasks

Now setup calls the deps rule that takes care of bundling
RubyGem dependencies loudly.
This commit is contained in:
Leandro Ostera
2015-05-06 11:31:58 -03:00
parent 24085e5007
commit 739dd80cf6

View File

@@ -1,14 +1,19 @@
all: setup index
index:
@TLDRHOME=`pwd` ./scripts/build_index.rb
@echo "Index rebuilt."
setup:
setup: hooks deps
hooks:
@cp ./scripts/pre-commit .git/hooks
@chmod +x .git/hooks/pre-commit
@echo "Git pre-commit hook installed."
@gem install mdl --install-dir .gem --no-rdoc --no-ri
@echo "Installed required Ruby gems under .gem"
deps:
@bundle
@echo "OK"
lint:
@GEM_PATH=.gem find pages -exec .gem/bin/mdl {} --style ./scripts/markdown-style.rb 1>&2 \;
@@ -16,3 +21,4 @@ lint:
lint-changed:
@./scripts/lint-changed.sh
.PHONY: index setup hooks deps lint lint-changed