From fb7b33580b6c0afef8a5a1481dc17c5cb24eb623 Mon Sep 17 00:00:00 2001 From: "Paul J. Davis" Date: Tue, 23 Oct 2012 14:18:49 -0500 Subject: [PATCH] Add a distclean target for Make This runs a `git clean -fxd` to revert to a pristine Git clone. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 7ceefbe..6541804 100644 --- a/Makefile +++ b/Makefile @@ -8,6 +8,8 @@ clean: rm -rf .eunit rm -f test/*.beam +distclean: clean + git clean -fxd depends: @if test ! -d ./deps; then \