From 93a4702de9cd72f3b5f0e85ae92d19059edf0a5d Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Mon, 16 Mar 2015 10:39:11 -0600 Subject: [PATCH] delete lib dir in clean target --- makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/makefile b/makefile index d244b86bb0..023f981272 100755 --- a/makefile +++ b/makefile @@ -1624,7 +1624,7 @@ tarball: @echo "creating build/avian-$(version).tar.bz2" @mkdir -p build (cd .. && tar --exclude=build --exclude=cmake-build --exclude=distrib \ - --exclude='.*' --exclude='*~' \ + --exclude=lib --exclude='.*' --exclude='*~' \ -cjf avian/build/avian-$(version).tar.bz2 avian) .PHONY: clean-current @@ -1634,8 +1634,8 @@ clean-current: .PHONY: clean clean: - @echo "removing build" - rm -rf build cmake-build distrib + @echo "removing build directories" + rm -rf build cmake-build distrib lib ifeq ($(continuations),true) $(build)/compile-x86-asm.o: $(src)/continuations-x86.$(asm-format)