ia64/xen-unstable
changeset 5043:90feb98108de
bitkeeper revision 1.1483.1.1 (428dfcf4ShUaO_5EW8otOGE_3NKxvQ)
Makefile:
Move ioemu targets to the end of the Makefile so that the default target
is all again.
Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
Makefile:
Move ioemu targets to the end of the Makefile so that the default target
is all again.
Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
author | cl349@firebug.cl.cam.ac.uk |
---|---|
date | Fri May 20 15:06:28 2005 +0000 (2005-05-20) |
parents | 08bcb94afa37 |
children | 88e25f4669ad |
files | tools/Makefile |
line diff
1.1 --- a/tools/Makefile Fri May 20 13:34:14 2005 +0000 1.2 +++ b/tools/Makefile Fri May 20 15:06:28 2005 +0000 1.3 @@ -14,15 +14,6 @@ SUBDIRS += pygrub 1.4 1.5 .PHONY: all install clean check check_clean ioemu eioemuinstall ioemuclean 1.6 1.7 -ifndef XEN_NO_IOEMU 1.8 -ioemu ioemuinstall ioemuclean: 1.9 - [ -f ioemu/config-host.h ] || \ 1.10 - (cd ioemu; ./configure --prefix=$(DESTDIR)/usr) 1.11 - $(MAKE) -C ioemu $(patsubst ioemu%,%,$@) 1.12 -else 1.13 -ioemu ioemuinstall ioemuclean: 1.14 -endif 1.15 - 1.16 all: check 1.17 @set -e; for subdir in $(SUBDIRS); do \ 1.18 $(MAKE) -C $$subdir $@; \ 1.19 @@ -46,3 +37,13 @@ check: 1.20 1.21 check_clean: 1.22 $(MAKE) -C check clean 1.23 + 1.24 +ifndef XEN_NO_IOEMU 1.25 +ioemu ioemuinstall ioemuclean: 1.26 + [ -f ioemu/config-host.h ] || \ 1.27 + (cd ioemu; ./configure --prefix=$(DESTDIR)/usr) 1.28 + $(MAKE) -C ioemu $(patsubst ioemu%,%,$@) 1.29 +else 1.30 +ioemu ioemuinstall ioemuclean: 1.31 +endif 1.32 +