aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/xenmon/Makefile4
-rw-r--r--tools/xenpmd/Makefile2
2 files changed, 4 insertions, 2 deletions
diff --git a/tools/xenmon/Makefile b/tools/xenmon/Makefile
index ffbad56d3b..fe89887608 100644
--- a/tools/xenmon/Makefile
+++ b/tools/xenmon/Makefile
@@ -36,7 +36,9 @@ install: build
.PHONY: clean
clean:
- rm -f $(DEPS)
+ $(RM) -f $(DEPS)
+ $(RM) -f xenbaked xenbaked.o
+ $(RM) -f xentrace_setmake setmask.o
xenbaked: xenbaked.o Makefile
$(CC) $(LDFLAGS) $< -o $@ $(LDLIBS)
diff --git a/tools/xenpmd/Makefile b/tools/xenpmd/Makefile
index 13f940fc77..52a0a2d669 100644
--- a/tools/xenpmd/Makefile
+++ b/tools/xenpmd/Makefile
@@ -16,7 +16,7 @@ install: all
.PHONY: clean
clean:
- $(RM) -f xenpmd $(DEPS)
+ $(RM) -f xenpmd xenpmd.o $(DEPS)
xenpmd: xenpmd.o Makefile
$(CC) $(LDFLAGS) $< -o $@ $(LDLIBS)