x86, um: get rid of arch/um/Kconfig.arch
[deliverable/linux.git] / arch / um / Makefile
CommitLineData
4f193362
PS
1#
2# This file is included by the global makefile so that you can add your own
3# architecture-specific flags and dependencies.
4#
4c9e1385 5# Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
1da177e4
LT
6# Licensed under the GPL
7#
8
9ARCH_DIR := arch/um
10OS := $(shell uname -s)
11# We require bash because the vmlinux link and loader script cpp use bash
12# features.
13SHELL := /bin/bash
14
15filechk_gen_header = $<
16
17core-y += $(ARCH_DIR)/kernel/ \
18 $(ARCH_DIR)/drivers/ \
19 $(ARCH_DIR)/os-$(OS)/
20
1da177e4
LT
21# These are cleaned up during mrproper. Please DO NOT fix it again, this is
22# the Correct Thing(tm) to do!
ec82c32d 23ARCH_SYMLINKS = $(ARCH_DIR)/include/shared/uml-config.h
1da177e4 24
8569c914 25MODE_INCLUDE += -I$(srctree)/$(ARCH_DIR)/include/shared/skas
1da177e4 26
42fda663 27include $(srctree)/$(ARCH_DIR)/Makefile-skas
1da177e4 28
aa7bd942
AV
29ARCH_INCLUDE := -I$(srctree)/$(ARCH_DIR)/include/shared
30ARCH_INCLUDE += -I$(srctree)/$(ARCH_DIR)/sys-$(SUBARCH)/shared
fd7aab9c 31ifneq ($(KBUILD_SRC),)
aa7bd942 32ARCH_INCLUDE += -I$(ARCH_DIR)/include/shared # for three generated files
fd7aab9c 33endif
aa7bd942 34KBUILD_CPPFLAGS += -I$(srctree)/$(ARCH_DIR)/sys-$(SUBARCH)
1da177e4 35
98105d47
PBG
36# -Dvmap=kernel_vmap prevents anything from referencing the libpcap.o symbol so
37# named - it's a common symbol in libpcap, so we get a binary which crashes.
fd748104 38#
98105d47
PBG
39# Same things for in6addr_loopback and mktime - found in libc. For these two we
40# only get link-time error, luckily.
41#
42# These apply to USER_CFLAGS to.
1da177e4 43
260c0cb8 44KBUILD_CFLAGS += $(CFLAGS) $(CFLAGS-y) -D__arch_um__ -DSUBARCH=\"$(SUBARCH)\" \
98105d47 45 $(ARCH_INCLUDE) $(MODE_INCLUDE) -Dvmap=kernel_vmap \
818f6ef4
JD
46 -Din6addr_loopback=kernel_in6addr_loopback \
47 -Din6addr_any=kernel_in6addr_any
fd748104 48
222d394d 49KBUILD_AFLAGS += $(ARCH_INCLUDE)
1da177e4 50
d45e44d4 51USER_CFLAGS = $(patsubst $(KERNEL_DEFINES),,$(patsubst -D__KERNEL__,,\
a0f97e06 52 $(patsubst -I%,,$(KBUILD_CFLAGS)))) $(ARCH_INCLUDE) $(MODE_INCLUDE) \
260c0cb8 53 $(filter -I%,$(CFLAGS)) -D_FILE_OFFSET_BITS=64
d45e44d4 54
55include $(srctree)/$(ARCH_DIR)/Makefile-$(SUBARCH)
56
57#This will adjust *FLAGS accordingly to the platform.
58include $(srctree)/$(ARCH_DIR)/Makefile-os-$(OS)
ecc354a9 59
1de1502c
AV
60KBUILD_CPPFLAGS += -I$(srctree)/arch/$(HEADER_ARCH)/include
61
ecc354a9
PBG
62# -Derrno=kernel_errno - This turns all kernel references to errno into
63# kernel_errno to separate them from the libc errno. This allows -fno-common
a0f97e06 64# in KBUILD_CFLAGS. Otherwise, it would cause ld to complain about the two different
ecc354a9 65# errnos.
98105d47 66# These apply to kernelspace only.
f15cf515
JD
67#
68# strip leading and trailing whitespace to make the USER_CFLAGS removal of these
69# defines more robust
ecc354a9 70
f15cf515
JD
71KERNEL_DEFINES = $(strip -Derrno=kernel_errno -Dsigprocmask=kernel_sigprocmask \
72 -Dmktime=kernel_mktime $(ARCH_KERNEL_DEFINES))
a0f97e06 73KBUILD_CFLAGS += $(KERNEL_DEFINES)
1da177e4 74
4f193362 75PHONY += linux
1da177e4
LT
76
77all: linux
78
79linux: vmlinux
a4b741e3 80 @echo ' LINK $@'
cb8aa3d2 81 $(Q)ln -f $< $@
1da177e4
LT
82
83define archhelp
84 echo '* linux - Binary kernel image (./linux) - for backward'
85 echo ' compatibility only, this creates a hard link to the'
4b3f686d 86 echo ' real kernel binary, the "vmlinux" binary you'
1da177e4
LT
87 echo ' find in the kernel root.'
88endef
89
61bee204 90KBUILD_KCONFIG := arch/um/Kconfig.$(HEADER_ARCH)
1da177e4 91
8569c914
AV
92archprepare: $(ARCH_SYMLINKS) $(ARCH_DIR)/include/shared/user_constants.h
93prepare: $(ARCH_DIR)/include/shared/kern_constants.h
1da177e4
LT
94
95LINK-$(CONFIG_LD_SCRIPT_STATIC) += -static
96LINK-$(CONFIG_LD_SCRIPT_DYN) += -Wl,-rpath,/lib
97
275e6e1e
PBG
98CFLAGS_NO_HARDENING := $(call cc-option, -fno-PIC,) $(call cc-option, -fno-pic,) \
99 $(call cc-option, -fno-stack-protector,) \
100 $(call cc-option, -fno-stack-protector-all,)
101
1da177e4
LT
102CONFIG_KERNEL_STACK_ORDER ?= 2
103STACK_SIZE := $(shell echo $$[ 4096 * (1 << $(CONFIG_KERNEL_STACK_ORDER)) ] )
104
42fda663
JD
105CPPFLAGS_vmlinux.lds = -U$(SUBARCH) -DSTART=$(START) -DELF_ARCH=$(ELF_ARCH) \
106 -DELF_FORMAT="$(ELF_FORMAT)" -DKERNEL_STACK_SIZE=$(STACK_SIZE)
1da177e4 107
4c9e1385 108# The wrappers will select whether using "malloc" or the kernel allocator.
1da177e4
LT
109LINK_WRAPS = -Wl,--wrap,malloc -Wl,--wrap,free -Wl,--wrap,calloc
110
260c0cb8 111LD_FLAGS_CMDLINE = $(foreach opt,$(LDFLAGS),-Wl,$(opt))
0ba7fe03
JD
112
113CFLAGS_vmlinux := $(LINK-y) $(LINK_WRAPS) $(LD_FLAGS_CMDLINE)
1da177e4
LT
114define cmd_vmlinux__
115 $(CC) $(CFLAGS_vmlinux) -o $@ \
116 -Wl,-T,$(vmlinux-lds) $(vmlinux-init) \
117 -Wl,--start-group $(vmlinux-main) -Wl,--end-group \
776cfebb 118 -lutil \
75473c1d 119 $(filter-out $(vmlinux-lds) $(vmlinux-init) $(vmlinux-main) vmlinux.o \
1da177e4
LT
120 FORCE ,$^) ; rm -f linux
121endef
122
4c9e1385
JD
123# When cleaning we don't include .config, so we don't include
124# TT or skas makefiles and don't clean skas_ptregs.h.
8569c914
AV
125CLEAN_FILES += linux x.i gmon.out $(ARCH_DIR)/include/shared/uml-config.h \
126 $(ARCH_DIR)/include/shared/user_constants.h \
61bee204 127 $(ARCH_DIR)/include/shared/kern_constants.h
1da177e4 128
cc70a40b 129MRPROPER_FILES += $(ARCH_SYMLINKS)
1da177e4
LT
130
131archclean:
1da177e4
LT
132 @find . \( -name '*.bb' -o -name '*.bbg' -o -name '*.da' \
133 -o -name '*.gcov' \) -type f -print | xargs rm -f
134
8569c914 135$(objtree)/$(ARCH_DIR)/include/shared:
c6b7a1ed
JD
136 @echo ' MKDIR $@'
137 $(Q)mkdir -p $@
138
1da177e4
LT
139# Generated files
140define filechk_umlconfig
141 sed 's/ CONFIG/ UML_CONFIG/'
142endef
143
8569c914 144$(ARCH_DIR)/include/shared/uml-config.h : include/linux/autoconf.h
4ee189a9
JD
145 $(call filechk,umlconfig)
146
cb8aa3d2
PBG
147$(ARCH_DIR)/sys-$(SUBARCH)/user-offsets.s: FORCE
148 $(Q)$(MAKE) $(build)=$(ARCH_DIR)/sys-$(SUBARCH) $@
4ee189a9 149
f64a227b
SR
150define filechk_gen-asm-offsets
151 (set -e; \
f64a227b
SR
152 echo "/*"; \
153 echo " * DO NOT MODIFY."; \
154 echo " *"; \
155 echo " * This file was generated by arch/$(ARCH)/Makefile"; \
156 echo " *"; \
157 echo " */"; \
158 echo ""; \
159 sed -ne "/^->/{s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; s:->::; p;}"; \
ecba97d4 160 echo ""; )
f64a227b
SR
161endef
162
8569c914 163$(ARCH_DIR)/include/shared/user_constants.h: $(ARCH_DIR)/sys-$(SUBARCH)/user-offsets.s
8d0b9dc9
AV
164 $(call filechk,gen-asm-offsets)
165
8569c914 166$(ARCH_DIR)/include/shared/kern_constants.h: $(objtree)/$(ARCH_DIR)/include/shared
4ee189a9 167 @echo ' SYMLINK $@'
8ede0bdb 168 $(Q)ln -sf ../../../../include/asm/asm-offsets.h $@
1da177e4 169
ec82c32d 170export SUBARCH USER_CFLAGS CFLAGS_NO_HARDENING OS HEADER_ARCH DEV_NULL_PATH
This page took 0.346674 seconds and 5 git commands to generate.