Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
[sfrench/cifs-2.6.git] / arch / um / Makefile-i386
1 core-y += arch/um/sys-i386/ arch/x86/crypto/
2
3 TOP_ADDR := $(CONFIG_TOP_ADDR)
4
5 ifeq ($(CONFIG_MODE_SKAS),y)
6   ifneq ($(CONFIG_MODE_TT),y)
7      START := 0x8048000
8   endif
9 endif
10
11 LDFLAGS                 += -m elf_i386
12 ELF_ARCH                := $(SUBARCH)
13 ELF_FORMAT              := elf32-$(SUBARCH)
14 OBJCOPYFLAGS            := -O binary -R .note -R .comment -S
15 HEADER_ARCH             := x86
16
17 ifeq ("$(origin SUBARCH)", "command line")
18 ifneq ("$(shell uname -m | sed -e s/i.86/i386/)", "$(SUBARCH)")
19 CFLAGS                  += $(call cc-option,-m32)
20 AFLAGS                  += $(call cc-option,-m32)
21 LINK-y                  += $(call cc-option,-m32)
22 UML_OBJCOPYFLAGS        += -F $(ELF_FORMAT)
23
24 export LDFLAGS HOSTCFLAGS HOSTLDFLAGS UML_OBJCOPYFLAGS
25 endif
26 endif
27
28 CFLAGS                  += -DCONFIG_X86_32
29 AFLAGS                  += -DCONFIG_X86_32
30 CONFIG_X86_32           := y
31 export CONFIG_X86_32
32
33 ARCH_KERNEL_DEFINES += -U__$(SUBARCH)__ -U$(SUBARCH)
34
35 # First of all, tune CFLAGS for the specific CPU. This actually sets cflags-y.
36 include $(srctree)/arch/i386/Makefile.cpu
37
38 # prevent gcc from keeping the stack 16 byte aligned. Taken from i386.
39 cflags-y += $(call cc-option,-mpreferred-stack-boundary=2)
40
41 # Prevent sprintf in nfsd from being converted to strcpy and resulting in
42 # an unresolved reference.
43 cflags-y += -ffreestanding
44
45 CFLAGS += $(cflags-y)