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.
This commit is contained in:
Thomas Preud'homme 2010-05-06 17:52:11 +02:00 committed by Thomas Preud'homme
parent 4a2f811a5e
commit a0a2ced897
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ pstack : pstack.c
$(CC) $(CFLAGS) -o pstack pstack.c
clean:
rm pstack
rm -f pstack
install : pstack
mkdir -p $(BINDIR)