ia64/xen-unstable
changeset 9841:25e4cd1c3d26
Fix "make debug" in Xen subtree. Pointed out by Aravindh
at Unisys.
Signed-off-by: Keir Fraser <keir@xensource.com>
at Unisys.
Signed-off-by: Keir Fraser <keir@xensource.com>
author | kaf24@firebug.cl.cam.ac.uk |
---|---|
date | Tue Apr 25 08:54:36 2006 +0100 (2006-04-25) |
parents | a5fcffc826f3 |
children | 57e7b96139e7 |
files | xen/Makefile |
line diff
1.1 --- a/xen/Makefile Mon Apr 24 18:07:27 2006 +0100 1.2 +++ b/xen/Makefile Tue Apr 25 08:54:36 2006 +0100 1.3 @@ -13,12 +13,8 @@ default: build 1.4 .PHONY: dist 1.5 dist: install 1.6 1.7 -.PHONY: debug 1.8 -debug: 1.9 - objdump -D -S $(TARGET)-syms > $(TARGET).s 1.10 - 1.11 .PHONY: build install clean cscope TAGS tags 1.12 -build install clean cscope TAGS tags:: 1.13 +build install debug clean cscope TAGS tags:: 1.14 make -f Rules.mk _$@ 1.15 1.16 .PHONY: _build 1.17 @@ -38,6 +34,10 @@ build install clean cscope TAGS tags:: 1.18 $(INSTALL_DATA) include/public/io/*.h $(DESTDIR)/usr/include/xen/io 1.19 $(INSTALL_DATA) include/public/COPYING $(DESTDIR)/usr/include/xen 1.20 1.21 +.PHONY: _debug 1.22 +_debug: 1.23 + objdump -D -S $(TARGET)-syms > $(TARGET).s 1.24 + 1.25 .PHONY: _clean 1.26 _clean: delete-unfresh-files 1.27 $(MAKE) -C tools clean