|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] [PATCH 4 of 4] tools: remove some .o and binary files on cle
# HG changeset patch
# User Ian Campbell <ian.campbell@xxxxxxxxxx>
# Date 1301568860 -3600
# Node ID dcc9d9a5fb46bf4f2e08fcda78526b18367f8b8b
# Parent 25e25665f03db5012283e4dc5957d6aa69a30ddf
tools: remove some .o and binary files on clean
Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx>
diff -r 25e25665f03d -r dcc9d9a5fb46 tools/xenmon/Makefile
--- a/tools/xenmon/Makefile Thu Mar 31 11:54:20 2011 +0100
+++ b/tools/xenmon/Makefile Thu Mar 31 11:54:20 2011 +0100
@@ -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 -r 25e25665f03d -r dcc9d9a5fb46 tools/xenpmd/Makefile
--- a/tools/xenpmd/Makefile Thu Mar 31 11:54:20 2011 +0100
+++ b/tools/xenpmd/Makefile Thu Mar 31 11:54:20 2011 +0100
@@ -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)
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
|
|
|
|