2 # Makefile for Xen components
5 obj-y
:= hypercall.o xenivt.o xensetup.o xen_pv_ops.o \
6 hypervisor.o xencomm.o xcom_hcall.o grant-table.o
8 AFLAGS_xenivt.o
+= -D__IA64_ASM_PARAVIRTUALIZED_XEN
11 ASM_PARAVIRT_MULTI_COMPILE_SRCS
= ivt.S entry.S
12 ASM_PARAVIRT_OBJS
= $(addprefix xen-
,$(ASM_PARAVIRT_MULTI_COMPILE_SRCS
:.S
=.o
))
13 obj-y
+= $(ASM_PARAVIRT_OBJS
)
14 define paravirtualized_xen
15 AFLAGS_
$(1) += -D__IA64_ASM_PARAVIRTUALIZED_XEN
17 $(foreach o
,$(ASM_PARAVIRT_OBJS
),$(eval
$(call paravirtualized_xen
,$(o
))))
19 $(obj
)/xen-
%.o
: $(src
)/..
/kernel
/%.S FORCE
20 $(call if_changed_dep
,as_o_S
)