debuggers.hg
changeset 16647:1f8797a74743
tools: Some fixes for 'make clean'.
Signed-off-by: Kurt Hackel <kurt.hackel@oracle.com>
Signed-off-by: Kurt Hackel <kurt.hackel@oracle.com>
author | Keir Fraser <keir.fraser@citrix.com> |
---|---|
date | Fri Dec 14 10:16:52 2007 +0000 (2007-12-14) |
parents | 95bb6485d29d |
children | a1ba468e45eb |
files | tools/libfsimage/Rules.mk tools/libfsimage/common/Makefile tools/libxc/Makefile tools/python/Makefile |
line diff
1.1 --- a/tools/libfsimage/Rules.mk Fri Dec 14 10:15:00 2007 +0000 1.2 +++ b/tools/libfsimage/Rules.mk Fri Dec 14 10:16:52 2007 +0000 1.3 @@ -27,6 +27,6 @@ fs-install: fs-all 1.4 $(CC) $(CFLAGS) $(LDFLAGS) $(SHLIB_CFLAGS) -o $@ $^ -lfsimage $(FS_LIBDEPS) 1.5 1.6 clean distclean: 1.7 - rm -f $(PIC_OBJS) $(FSLIB) 1.8 + rm -f $(PIC_OBJS) $(FSLIB) $(DEPS) 1.9 1.10 -include $(DEPS)
2.1 --- a/tools/libfsimage/common/Makefile Fri Dec 14 10:15:00 2007 +0000 2.2 +++ b/tools/libfsimage/common/Makefile Fri Dec 14 10:16:52 2007 +0000 2.3 @@ -32,7 +32,7 @@ install: all 2.4 $(INSTALL_DATA) fsimage_grub.h $(DESTDIR)/usr/include 2.5 2.6 clean distclean: 2.7 - rm -f $(PIC_OBJS) $(LIB) 2.8 + rm -f $(PIC_OBJS) $(LIB) $(DEPS) 2.9 2.10 libfsimage.so: libfsimage.so.$(MAJOR) 2.11 ln -sf $< $@
3.1 --- a/tools/libxc/Makefile Fri Dec 14 10:15:00 2007 +0000 3.2 +++ b/tools/libxc/Makefile Fri Dec 14 10:16:52 2007 +0000 3.3 @@ -125,7 +125,8 @@ TAGS: 3.4 clean: 3.5 rm -rf *.rpm $(LIB) *~ $(DEPS) xen \ 3.6 $(CTRL_LIB_OBJS) $(CTRL_PIC_OBJS) \ 3.7 - $(GUEST_LIB_OBJS) $(GUEST_PIC_OBJS) 3.8 + $(GUEST_LIB_OBJS) $(GUEST_PIC_OBJS) \ 3.9 + $(LIBELF_SRCS) libelf-private.h 3.10 3.11 .PHONY: rpm 3.12 rpm: build
4.1 --- a/tools/python/Makefile Fri Dec 14 10:15:00 2007 +0000 4.2 +++ b/tools/python/Makefile Fri Dec 14 10:16:52 2007 +0000 4.3 @@ -104,4 +104,4 @@ test: 4.4 4.5 .PHONY: clean 4.6 clean: 4.7 - rm -rf build *.pyc *.pyo *.o *.a *~ $(CATALOGS) xen/util/xsm/xsm.py 4.8 + rm -rf build *.pyc *.pyo *.o *.a *~ $(CATALOGS) xen/util/xsm/xsm.py xen/util/auxbin.pyc