From a0a2ced8978f961329c607c19fdddff67613831e Mon Sep 17 00:00:00 2001 From: Thomas Preud'homme Date: Thu, 6 May 2010 17:52:11 +0200 Subject: [PATCH] Remove pstack unconditionally in clean target. Don't fail if pstack binary doesn't exist so that the clean target can be called at any time. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fbc565b..27c340a 100644 --- a/Makefile +++ b/Makefile @@ -28,7 +28,7 @@ pstack : pstack.c $(CC) $(CFLAGS) -o pstack pstack.c clean: - rm pstack + rm -f pstack install : pstack mkdir -p $(BINDIR)