“545074fb953e1753f6b8409db533ad7998789efb”上不存在“README.md”
Makefile 681 字节
Newer Older
1
ifdef CONFIG_FUNCTION_TRACER
2 3 4
# Do not profile debug and lowlevel utilities
CFLAGS_REMOVE_spinlock.o = -pg
CFLAGS_REMOVE_time.o = -pg
5
CFLAGS_REMOVE_irq.o = -pg
6 7
endif

8 9 10
# Make sure early boot has no stackprotector
nostackp := $(call cc-option, -fno-stack-protector)
CFLAGS_enlighten.o		:= $(nostackp)
11
CFLAGS_mmu.o			:= $(nostackp)
12

13
obj-y		:= enlighten.o setup.o multicalls.o mmu.o irq.o \
14
			time.o xen-asm.o xen-asm_$(BITS).o \
15 16
			grant-table.o suspend.o platform-pci-unplug.o \
			p2m.o
17

18 19 20
obj-$(CONFIG_SMP)		+= smp.o
obj-$(CONFIG_PARAVIRT_SPINLOCKS)+= spinlock.o
obj-$(CONFIG_XEN_DEBUG_FS)	+= debugfs.o
21
obj-$(CONFIG_XEN_DOM0)		+= vga.o
22
obj-$(CONFIG_SWIOTLB_XEN)	+= pci-swiotlb-xen.o