ia64/xen-unstable
view linux-2.6-xen-sparse/scripts/Makefile.xen @ 12460:22e58b2b0b45
[IA64] warning fix
These are pulled in through the ACPI header now
Signed-off-by: Alex Williamson <alex.williamson@hp.com>
These are pulled in through the ACPI header now
Signed-off-by: Alex Williamson <alex.williamson@hp.com>
author | awilliam@xenbuild.aw |
---|---|
date | Sun Oct 29 09:27:26 2006 -0700 (2006-10-29) |
parents | 6e55040e7b79 |
children |
line source
2 # cherrypickxen($1 = allobj)
3 cherrypickxen = $(foreach var, $(1), \
4 $(shell o=$(var); \
5 c=$${o%.o}-xen.c; \
6 s=$${o%.o}-xen.S; \
7 oxen=$${o%.o}-xen.o; \
8 [ -f $(srctree)/$(src)/$${c} ] || \
9 [ -f $(srctree)/$(src)/$${s} ] \
10 && echo $$oxen \
11 || echo $(var) ) \
12 )
13 # filterxen($1 = allobj, $2 = noobjs)
14 filterxen = $(filter-out $(2), $(1))