commit 0e278e7a0a8a5d74c43b2dd2fc44c141e048fa64 Author: Christoph Egger Date: Thu Apr 4 13:29:12 2013 +0000 tools/xenbackendd: properly cleanup Do not leave builds on gmake clean. Signed-off-by: Christoph Egger diff --git a/tools/xenbackendd/Makefile b/tools/xenbackendd/Makefile index 8374ad3..31e5c62 100644 --- a/tools/xenbackendd/Makefile +++ b/tools/xenbackendd/Makefile @@ -30,7 +30,7 @@ install: build .PHONY: clean clean: - rm -f $(DEPS) + $(RM) *.a *.so *.o $(DEPS) xenbackendd xenbackendd: xenbackendd.o $(CC) $(LDFLAGS) $< -o $@ $(LDLIBS) $(APPEND_LDFLAGS)