From 8e12652aa6fb05d093125d7dd9dba09daa476516 Mon Sep 17 00:00:00 2001 From: Tuncer Ayaz Date: Fri, 23 Nov 2012 17:59:15 +0100 Subject: [PATCH] Makefile: fix 'clean' and add 'distclean' * fix 'clean' to remove .eunit (not .test) * add 'distclean' to also remove deps/ --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3f7b8ee..4ff331f 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,10 @@ all: ./bootstrap clean: - @rm -rf rebar ebin/*.beam inttest/rt.work rt.work .test + @rm -rf rebar ebin/*.beam inttest/rt.work rt.work .eunit + +distclean: clean + @rm -rf deps debug: @./bootstrap debug