Makefile 5.15 KB
Newer Older
1 2 3 4 5
# 
# Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
# Licensed under the GPL
#

6 7 8 9 10 11 12 13 14 15
ARCH_DIR = arch/um
OS := $(shell uname -s)

# Recalculate MODLIB to reflect the EXTRAVERSION changes (via KERNELRELEASE)
# The way the toplevel Makefile is written EXTRAVERSION is not supposed
# to be changed outside the toplevel Makefile, but recalculating MODLIB is
# a sufficient workaround until we no longer need architecture dependent
# EXTRAVERSION...
MODLIB := $(INSTALL_MOD_PATH)/lib/modules/$(KERNELRELEASE)

16
ifeq ($(CONFIG_DEBUG_INFO),y)
17 18 19
CFLAGS := $(subst -fomit-frame-pointer,,$(CFLAGS))
endif

20
core-y			+= $(ARCH_DIR)/kernel/		 \
21 22
			   $(ARCH_DIR)/drivers/          \
			   $(ARCH_DIR)/sys-$(SUBARCH)/
23

24
# Have to precede the include because the included Makefiles reference them.
25 26 27 28
SYMLINK_HEADERS = include/asm-um/archparam.h include/asm-um/system.h \
	include/asm-um/sigcontext.h include/asm-um/processor.h \
	include/asm-um/ptrace.h include/asm-um/arch-signal.h

Jeff Dike's avatar
Jeff Dike committed
29 30
ARCH_SYMLINKS = include/asm-um/arch $(ARCH_DIR)/include/sysdep $(ARCH_DIR)/os \
	$(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 35 36
include $(ARCH_DIR)/Makefile-$(SUBARCH)
include $(ARCH_DIR)/Makefile-os-$(OS)

37 38 39 40 41 42 43 44 45
MAKEFILE-$(CONFIG_MODE_TT) += Makefile-tt
MAKEFILE-$(CONFIG_MODE_SKAS) += Makefile-skas

ifneq ($(MAKEFILE-y),)
  include $(addprefix $(ARCH_DIR)/,$(MAKEFILE-y))
endif

EXTRAVERSION := $(EXTRAVERSION)-1um

46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
ARCH_INCLUDE = -I$(ARCH_DIR)/include

# -Derrno=kernel_errno - This turns all kernel references to errno into
# kernel_errno to separate them from the libc errno.  This allows -fno-common
# in CFLAGS.  Otherwise, it would cause ld to complain about the two different
# errnos.

CFLAGS += $(CFLAGS-y) -D__arch_um__ -DSUBARCH=\"$(SUBARCH)\" \
	-D_LARGEFILE64_SOURCE $(ARCH_INCLUDE) -Derrno=kernel_errno \
	$(MODE_INCLUDE)

LINK_WRAPS = -Wl,--wrap,malloc -Wl,--wrap,free -Wl,--wrap,calloc

SIZE = (($(CONFIG_NEST_LEVEL) + $(CONFIG_KERNEL_HALF_GIGS)) * 0x20000000)

ifeq ($(CONFIG_MODE_SKAS), y)
$(SYS_HEADERS) : $(ARCH_DIR)/kernel/skas/include/skas_ptregs.h
endif

65 66
include/linux/version.h: arch/$(ARCH)/Makefile

67 68 69
$(ARCH_DIR)/vmlinux.lds.S :
	touch $@

70
prepare: $(ARCH_SYMLINKS) $(SYS_HEADERS) $(GEN_HEADERS)
Kai Germaschewski's avatar
Kai Germaschewski committed
71

72
LDFLAGS_vmlinux = -r
Kai Germaschewski's avatar
Kai Germaschewski committed
73 74 75

vmlinux: $(ARCH_DIR)/main.o 

76 77 78 79
# These aren't in Makefile-tt because they are needed in the !CONFIG_MODE_TT +
# CONFIG_MODE_SKAS + CONFIG_STATIC_LINK case.

LINK_TT = -static
80
LD_SCRIPT_TT := uml.lds
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97

ifeq ($(CONFIG_STATIC_LINK),y)
  LINK-y += $(LINK_TT)
  LD_SCRIPT-y := $(LD_SCRIPT_TT)
else
ifeq ($(CONFIG_MODE_TT),y)
  LINK-y += $(LINK_TT)
  LD_SCRIPT-y := $(LD_SCRIPT_TT)
else
ifeq ($(CONFIG_MODE_SKAS),y)
  LINK-y += $(LINK_SKAS)
  LD_SCRIPT-y := $(LD_SCRIPT_SKAS)
endif
endif
endif

CPP_MODE_TT := $(shell [ "$(CONFIG_MODE_TT)" = "y" ] && echo -DMODE_TT)
98 99
CONFIG_KERNEL_STACK_ORDER ?= 2
STACK_SIZE := $(shell echo $$[ 4096 * (1 << $(CONFIG_KERNEL_STACK_ORDER)) ] )
100

101
CPPFLAGS_vmlinux.lds = -U$(SUBARCH) \
102 103
	-DSTART=$$(($(TOP_ADDR) - $(SIZE))) -DELF_ARCH=$(ELF_ARCH) \
	-DELF_FORMAT=\"$(ELF_FORMAT)\" $(CPP_MODE_TT) \
104 105
	-DKERNEL_STACK_SIZE=$(STACK_SIZE)

106
CPPFLAGS_$(LD_SCRIPT-y) = $(CPPFLAGS_vmlinux.lds) -P -C -Uum
107 108 109 110 111

LD_SCRIPT-y := $(ARCH_DIR)/$(LD_SCRIPT-y)

$(LD_SCRIPT-y) : $(LD_SCRIPT-y:.s=.S) scripts FORCE
	$(call if_changed_dep,as_s_S)
Kai Germaschewski's avatar
Kai Germaschewski committed
112

113 114
linux: vmlinux $(LD_SCRIPT-y)
	$(CC) -Wl,-T,$(LD_SCRIPT-y) $(LINK-y) $(LINK_WRAPS) \
115
		-o linux $(ARCH_DIR)/main.o vmlinux -L/usr/lib -lutil
116 117 118

USER_CFLAGS := $(patsubst -I%,,$(CFLAGS))
USER_CFLAGS := $(patsubst -Derrno=kernel_errno,,$(USER_CFLAGS))
119
USER_CFLAGS := $(patsubst -D__KERNEL__,,$(USER_CFLAGS)) $(ARCH_INCLUDE) \
Jeff Dike's avatar
Jeff Dike committed
120
	$(MODE_INCLUDE)
121 122 123 124

# To get a definition of F_SETSIG
USER_CFLAGS += -D_GNU_SOURCE

125
CLEAN_FILES += linux x.i gmon.out $(ARCH_DIR)/uml.lds \
126
	$(ARCH_DIR)/dyn_link.ld.s $(GEN_HEADERS)
127

128 129 130 131 132 133 134 135
$(ARCH_DIR)/main.o: $(ARCH_DIR)/main.c
	$(CC) $(USER_CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $<

archmrproper:
	for d in $(ARCH_SUBDIRS) $(ARCH_DIR)/util; \
	do \
		$(MAKE) -C $$d archmrproper; \
	done
136
	rm -f $(CLEAN_FILES) $(SYMLINK_HEADERS) $(ARCH_SYMLINKS) include/asm \
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
		$(addprefix $(ARCH_DIR)/kernel/,$(KERN_SYMLINKS))

archclean: sysclean
	for d in $(ARCH_SUBDIRS) $(ARCH_DIR)/util; \
	do \
		$(MAKE) -C $$d clean; \
	done
	find . \( -name '*.bb' -o -name '*.bbg' -o -name '*.da' \
		-o -name '*.gcov' \) -type f -print | xargs rm -f
	rm -f linux x.i gmon.out $(ARCH_DIR)/link.ld $(GEN_HEADERS)

archdep: 
	for d in $(ARCH_SUBDIRS); do $(MAKE) -C $$d fastdep; done

$(SYMLINK_HEADERS):
	cd $(TOPDIR)/$(dir $@) ; \
	ln -sf $(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $(notdir $@)

include/asm-um/arch:
	cd $(TOPDIR)/include/asm-um && ln -sf ../asm-$(SUBARCH) arch

Jeff Dike's avatar
Jeff Dike committed
158 159
$(ARCH_DIR)/include/sysdep:
	cd $(ARCH_DIR)/include && ln -sf sysdep-$(SUBARCH) sysdep
160

Jeff Dike's avatar
Jeff Dike committed
161
$(ARCH_DIR)/os:
162 163
	cd $(ARCH_DIR) && ln -sf os-$(OS) os

Jeff Dike's avatar
Jeff Dike committed
164
$(ARCH_DIR)/include/uml-config.h :
165
	sed 's/ CONFIG/ UML_CONFIG/' $(TOPDIR)/include/linux/autoconf.h > $@
Jeff Dike's avatar
Jeff Dike committed
166

167 168 169
$(ARCH_DIR)/include/task.h : $(ARCH_DIR)/util/mk_task
	$< > $@

170 171 172 173 174
$(ARCH_DIR)/include/kern_constants.h : $(ARCH_DIR)/util/mk_constants
	$< > $@

$(ARCH_DIR)/util/mk_task : $(ARCH_DIR)/kernel/skas/include/skas_ptregs.h \
	$(ARCH_DIR)/util FORCE ;
Kai Germaschewski's avatar
Kai Germaschewski committed
175 176 177

$(ARCH_DIR)/util: FORCE
	@$(call descend,$@,)
178 179

export SUBARCH USER_CFLAGS OS