WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-devel

[Xen-devel] [PATCH] Build fixes for make clean

To: xen-devel <xen-devel@xxxxxxxxxxxxxxxxxxx>
Subject: [Xen-devel] [PATCH] Build fixes for make clean
From: Kurt Hackel <kurt.hackel@xxxxxxxxxx>
Date: Wed, 12 Dec 2007 13:31:22 -0800
Delivery-date: Wed, 12 Dec 2007 13:32:16 -0800
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
List-id: Xen developer discussion <xen-devel.lists.xensource.com>
List-post: <mailto:xen-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
User-agent: Mutt/1.5.16 (2007-06-11)
Hi,

Just a few fixes for "make clean".

Thanks
kurt

Signed-off-by: Kurt Hackel <kurt.hackel@xxxxxxxxxx>

===================================================================
diff -r 4054cd60895b tools/libfsimage/Rules.mk
--- a/tools/libfsimage/Rules.mk Mon Dec 10 13:49:22 2007 +0000
+++ b/tools/libfsimage/Rules.mk Wed Dec 12 12:04:30 2007 -0800
@@ -27,6 +27,6 @@ fs-install: fs-all
        $(CC) $(CFLAGS) $(LDFLAGS) $(SHLIB_CFLAGS) -o $@ $^ -lfsimage 
$(FS_LIBDEPS)
 
 clean distclean:
-       rm -f $(PIC_OBJS) $(FSLIB)
+       rm -f $(PIC_OBJS) $(FSLIB) $(DEPS)
 
 -include $(DEPS)
diff -r 4054cd60895b tools/libfsimage/common/Makefile
--- a/tools/libfsimage/common/Makefile  Mon Dec 10 13:49:22 2007 +0000
+++ b/tools/libfsimage/common/Makefile  Wed Dec 12 12:05:40 2007 -0800
@@ -32,7 +32,7 @@ install: all
        $(INSTALL_DATA) fsimage_grub.h $(DESTDIR)/usr/include
 
 clean distclean:
-       rm -f $(PIC_OBJS) $(LIB)
+       rm -f $(PIC_OBJS) $(LIB) $(DEPS)
 
 libfsimage.so: libfsimage.so.$(MAJOR)
        ln -sf $< $@
diff -r 4054cd60895b tools/libxc/Makefile
--- a/tools/libxc/Makefile      Mon Dec 10 13:49:22 2007 +0000
+++ b/tools/libxc/Makefile      Wed Dec 12 12:23:14 2007 -0800
@@ -125,7 +125,8 @@ clean:
 clean:
        rm -rf *.rpm $(LIB) *~ $(DEPS) xen \
             $(CTRL_LIB_OBJS) $(CTRL_PIC_OBJS) \
-            $(GUEST_LIB_OBJS) $(GUEST_PIC_OBJS)
+            $(GUEST_LIB_OBJS) $(GUEST_PIC_OBJS) \
+            $(LIBELF_SRCS) libelf-private.h
 
 .PHONY: rpm
 rpm: build
diff -r 4054cd60895b tools/python/Makefile
--- a/tools/python/Makefile     Mon Dec 10 13:49:22 2007 +0000
+++ b/tools/python/Makefile     Wed Dec 12 12:37:57 2007 -0800
@@ -104,4 +104,4 @@ test:
 
 .PHONY: clean
 clean:
-       rm -rf build *.pyc *.pyo *.o *.a *~ $(CATALOGS) xen/util/xsm/xsm.py
+       rm -rf build *.pyc *.pyo *.o *.a *~ $(CATALOGS) xen/util/xsm/xsm.py 
xen/util/auxbin.pyc
-- 

_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-devel] [PATCH] Build fixes for make clean, Kurt Hackel <=