all: escript | erl.mk

erl.mk:
	curl -fsSLo $@ 'https://raw.github.com/fenollp/erl-mk/master/erl.mk' || rm $@

dep_erldocs = https://github.com/erldocs/erldocs master

-include erl.mk
# Your targets after this line.

clean: clean-ebin

distclean: clean clean-escript clean-deps
	$(if $(wildcard docs/), rm -rf docs/ )
.PHONY: distclean


debug: debug-app
