This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / arch / um / Makefile
1
2 # Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
3 # Licensed under the GPL
4 #
5
6 ARCH_DIR = arch/um
7 OS := $(shell uname -s)
8
9 # Recalculate MODLIB to reflect the EXTRAVERSION changes (via KERNELRELEASE)
10 # The way the toplevel Makefile is written EXTRAVERSION is not supposed
11 # to be changed outside the toplevel Makefile, but recalculating MODLIB is
12 # a sufficient workaround until we no longer need architecture dependent
13 # EXTRAVERSION...
14 MODLIB := $(INSTALL_MOD_PATH)/lib/modules/$(KERNELRELEASE)
15
16 ifeq ($(CONFIG_DEBUG_INFO),y)
17 CFLAGS := $(subst -fomit-frame-pointer,,$(CFLAGS))
18 endif
19
20 core-y                  += $(ARCH_DIR)/kernel/           \
21                            $(ARCH_DIR)/drivers/          \
22                            $(ARCH_DIR)/sys-$(SUBARCH)/
23
24 # Have to precede the include because the included Makefiles reference them.
25 SYMLINK_HEADERS = archparam.h system.h sigcontext.h processor.h ptrace.h \
26         arch-signal.h module.h
27 SYMLINK_HEADERS := $(foreach header,$(SYMLINK_HEADERS),include/asm-um/$(header))
28
29 ARCH_SYMLINKS = include/asm-um/arch $(ARCH_DIR)/include/sysdep $(ARCH_DIR)/os \
30         $(SYMLINK_HEADERS) $(ARCH_DIR)/include/uml-config.h
31
32 GEN_HEADERS += $(ARCH_DIR)/include/task.h $(ARCH_DIR)/include/kern_constants.h
33
34 # This target adds dependencies to "prepare". They are defined in the included
35 # Makefiles (see Makefile-i386).
36
37 .PHONY: sys_prepare
38 sys_prepare:
39         @:
40
41 MAKEFILE-$(CONFIG_MODE_TT) += Makefile-tt
42 MAKEFILE-$(CONFIG_MODE_SKAS) += Makefile-skas
43
44 ifneq ($(MAKEFILE-y),)
45   include $(addprefix $(ARCH_DIR)/,$(MAKEFILE-y))
46 endif
47
48 include $(ARCH_DIR)/Makefile-$(SUBARCH)
49 include $(ARCH_DIR)/Makefile-os-$(OS)
50
51 EXTRAVERSION := $(EXTRAVERSION)-1um
52
53 ARCH_INCLUDE = -I$(ARCH_DIR)/include
54
55 # -Derrno=kernel_errno - This turns all kernel references to errno into
56 # kernel_errno to separate them from the libc errno.  This allows -fno-common
57 # in CFLAGS.  Otherwise, it would cause ld to complain about the two different
58 # errnos.
59
60 CFLAGS += $(CFLAGS-y) -D__arch_um__ -DSUBARCH=\"$(SUBARCH)\" \
61         -D_LARGEFILE64_SOURCE $(ARCH_INCLUDE) -Derrno=kernel_errno \
62         -Dsigprocmask=kernel_sigprocmask $(MODE_INCLUDE)
63
64 LINK_WRAPS = -Wl,--wrap,malloc -Wl,--wrap,free -Wl,--wrap,calloc
65
66 # These are needed for clean and mrproper, since in that case .config is not
67 # included; the values here are meaningless
68
69 CONFIG_NEST_LEVEL ?= 0
70 CONFIG_KERNEL_HALF_GIGS ?=  0
71
72 SIZE = (($(CONFIG_NEST_LEVEL) + $(CONFIG_KERNEL_HALF_GIGS)) * 0x20000000)
73
74 ifeq ($(CONFIG_MODE_SKAS), y)
75 $(SYS_HEADERS) : $(TOPDIR)/$(ARCH_DIR)/include/skas_ptregs.h
76 endif
77
78 include/linux/version.h: arch/$(ARCH)/Makefile
79
80 $(ARCH_DIR)/vmlinux.lds.S :
81         touch $@
82
83 prepare: $(ARCH_SYMLINKS) $(SYS_HEADERS) $(GEN_HEADERS)
84
85 LDFLAGS_vmlinux = -r
86
87 vmlinux: $(ARCH_DIR)/main.o 
88
89 # These aren't in Makefile-tt because they are needed in the !CONFIG_MODE_TT +
90 # CONFIG_MODE_SKAS + CONFIG_STATIC_LINK case.
91
92 LINK_TT = -static
93 LD_SCRIPT_TT := uml.lds.s
94
95 ifeq ($(CONFIG_STATIC_LINK),y)
96   LINK-y += $(LINK_TT)
97   LD_SCRIPT-y := $(LD_SCRIPT_TT)
98 else
99 ifeq ($(CONFIG_MODE_TT),y)
100   LINK-y += $(LINK_TT)
101   LD_SCRIPT-y := $(LD_SCRIPT_TT)
102 else
103 ifeq ($(CONFIG_MODE_SKAS),y)
104   LINK-y += $(LINK_SKAS)
105   LD_SCRIPT-y := $(LD_SCRIPT_SKAS)
106 endif
107 endif
108 endif
109
110 CPP_MODE_TT := $(shell [ "$(CONFIG_MODE_TT)" = "y" ] && echo -DMODE_TT)
111 CONFIG_KERNEL_STACK_ORDER ?= 2
112 STACK_SIZE := $(shell echo $$[ 4096 * (1 << $(CONFIG_KERNEL_STACK_ORDER)) ] )
113
114 AFLAGS_vmlinux.lds.o = $(shell echo -U$(SUBARCH) \
115         -DSTART=$$(($(TOP_ADDR) - $(SIZE))) -DELF_ARCH=$(ELF_ARCH) \
116         -DELF_FORMAT=\"$(ELF_FORMAT)\" $(CPP_MODE_TT) \
117         -DKERNEL_STACK_SIZE=$(STACK_SIZE))
118
119 export AFLAGS_$(LD_SCRIPT-y:.s=).o = $(AFLAGS_vmlinux.lds.o) -P -C -Uum
120
121 LD_SCRIPT-y := $(ARCH_DIR)/$(LD_SCRIPT-y)
122
123 #$(LD_SCRIPT-y) : $(LD_SCRIPT-y:.s=.S) scripts FORCE
124 #       $(call if_changed_dep,as_s_S)
125
126 linux: vmlinux $(LD_SCRIPT-y)
127         $(CC) -Wl,-T,$(LD_SCRIPT-y) $(LINK-y) $(LINK_WRAPS) \
128                 -o linux $(ARCH_DIR)/main.o vmlinux -L/usr/lib -lutil
129
130 USER_CFLAGS := $(patsubst -I%,,$(CFLAGS))
131 USER_CFLAGS := $(patsubst -Derrno=kernel_errno,,$(USER_CFLAGS))
132 USER_CFLAGS := $(patsubst -Dsigprocmask=kernel_sigprocmask,,$(USER_CFLAGS))
133 USER_CFLAGS := $(patsubst -D__KERNEL__,,$(USER_CFLAGS)) $(ARCH_INCLUDE) \
134         $(MODE_INCLUDE)
135
136 # To get a definition of F_SETSIG
137 USER_CFLAGS += -D_GNU_SOURCE
138
139 # From main Makefile, these options are set after including the ARCH makefile.
140 # So copy them here.
141
142 ifdef CONFIG_CC_OPTIMIZE_FOR_SIZE
143 USER_CFLAGS             += -Os
144 else
145 USER_CFLAGS             += -O2
146 endif
147
148 ifndef CONFIG_FRAME_POINTER
149 USER_CFLAGS             += -fomit-frame-pointer
150 endif
151
152 ifdef CONFIG_DEBUG_INFO
153 USER_CFLAGS             += -g
154 endif
155
156 CLEAN_FILES += linux x.i gmon.out $(ARCH_DIR)/uml.lds.s \
157         $(ARCH_DIR)/dyn_link.ld.s $(ARCH_DIR)/include/uml-config.h \
158         $(GEN_HEADERS)
159
160 MRPROPER_FILES += $(SYMLINK_HEADERS) $(ARCH_SYMLINKS) \
161         $(addprefix $(ARCH_DIR)/kernel/,$(KERN_SYMLINKS))
162
163 $(ARCH_DIR)/main.o: $(ARCH_DIR)/main.c sys_prepare
164         @ echo '  MAIN    $@'
165         @ $(CC) $(USER_CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $<
166
167 archmrproper:
168         @:
169
170 archclean:
171         @find . \( -name '*.bb' -o -name '*.bbg' -o -name '*.da' \
172                 -o -name '*.gcov' \) -type f -print | xargs rm -f
173
174 $(SYMLINK_HEADERS):
175         cd $(TOPDIR)/$(dir $@) ; \
176         ln -sf $(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $(notdir $@)
177
178 include/asm-um/arch:
179         cd $(TOPDIR)/include/asm-um && ln -sf ../asm-$(SUBARCH) arch
180
181 $(ARCH_DIR)/include/sysdep:
182         cd $(ARCH_DIR)/include && ln -sf sysdep-$(SUBARCH) sysdep
183
184 $(ARCH_DIR)/os:
185         cd $(ARCH_DIR) && ln -sf os-$(OS) os
186
187 # Generated files
188 define filechk_umlconfig
189         sed 's/ CONFIG/ UML_CONFIG/'
190 endef
191
192 $(ARCH_DIR)/include/uml-config.h : $(TOPDIR)/include/linux/autoconf.h
193         $(call filechk,umlconfig)
194
195 filechk_gen_header = $<
196
197 $(ARCH_DIR)/include/task.h : $(ARCH_DIR)/util/mk_task
198         $(call filechk,gen_header)
199
200 $(ARCH_DIR)/include/kern_constants.h : $(ARCH_DIR)/util/mk_constants
201         $(call filechk,gen_header)
202
203 $(ARCH_DIR)/util/mk_task $(ARCH_DIR)/util/mk_constants : $(ARCH_DIR)/util \
204         sys_prepare FORCE ;
205
206 $(ARCH_DIR)/util: FORCE
207         $(Q)$(MAKE) $(build)=$@
208
209 export SUBARCH USER_CFLAGS OS