search for: 31e5c62

Displaying 1 result from an estimated 1 matches for "31e5c62".

Did you mean: 3105c62
2013 Apr 22
2
[PATCH] tools/xenbackendd: make 'gmake clean' properly cleaning
tools/xenbackendd: properly cleanup Do not leave builds on gmake clean. Signed-off-by: Christoph Egger <chegger@amazon.de> 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) ____________________...