aboutsummaryrefslogtreecommitdiffstats
path: root/linux-2.4.29-xen-sparse/arch/xen/Makefile
blob: 0f1d0580da45ac9d34ae3f30fd652c755b924dde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
#
# xen/Makefile
#
# This file is included by the global makefile so that you can add your own
# architecture-specific flags and dependencies. Remember to do have actions
# for "archclean" and "archdep" for cleaning up and making dependencies for
# this architecture
#
# This file is subject to the terms and conditions of the GNU General Public
# License.  See the file "COPYING" in the main directory of this archive
# for more details.
#
# Copyright (C) 1994 by Linus Torvalds
#
# 19990713  Artur Skawina <skawina@geocities.com>
#           Added '-march' and '-mpreferred-stack-boundary' support
#

# If no .config file exists then use the appropriate defconfig-* file
ifneq (.config,$(wildcard .config))
DUMMYX:=$(shell cp $(TOPDIR)/arch/xen/defconfig$(EXTRAVERSION) $(TOPDIR)/.config)
-include $(TOPDIR)/.config
endif

LD=$(CROSS_COMPILE)ld -m elf_i386
OBJCOPY=$(CROSS_COMPILE)objcopy -R .note -R .comment -S
LDFLAGS=-e stext
LINKFLAGS =-T $(TOPDIR)/arch/xen/vmlinux.lds $(LDFLAGS)

CFLAGS += -pipe

check_gcc = $(shell if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi)

# prevent gcc from keeping the stack 16 byte aligned
CFLAGS += $(call check_gcc,-mpreferred-stack-boundary=2,)

ifdef CONFIG_M686
CFLAGS += -march=i686
endif

ifdef CONFIG_MPENTIUMIII
CFLAGS += -march=i686
endif

ifdef CONFIG_MPENTIUM4
CFLAGS += -march=i686
endif

ifdef CONFIG_MK7
CFLAGS += $(call check_gcc,-march=athlon,-march=i686 -malign-functions=4)
endif

# Disable unit-at-a-time mode, it makes gcc use a lot more stack
# due to the lack of sharing of stacklots.
CFLAGS += $(call check_gcc,-fno-unit-at-a-time,)

HEAD := arch/xen/kernel/head.o arch/xen/kernel/init_task.o

SUBDIRS += arch/xen/kernel arch/xen/mm arch/xen/lib
SUBDIRS += arch/xen/drivers/console 
SUBDIRS += arch/xen/drivers/evtchn
SUBDIRS += arch/xen/drivers/blkif
SUBDIRS += arch/xen/drivers/netif
SUBDIRS += arch/xen/drivers/balloon
ifdef CONFIG_XEN_PRIVILEGED_GUEST
SUBDIRS += arch/xen/drivers/dom0 
endif

CORE_FILES += arch/xen/kernel/kernel.o arch/xen/mm/mm.o
CORE_FILES += arch/xen/drivers/evtchn/drv.o
CORE_FILES += arch/xen/drivers/console/drv.o
DRIVERS += arch/xen/drivers/blkif/drv.o
DRIVERS += arch/xen/drivers/netif/drv.o
ifdef CONFIG_XEN_PRIVILEGED_GUEST
CORE_FILES += arch/xen/drivers/dom0/drv.o
endif
CORE_FILES += arch/xen/drivers/balloon/drv.o
LIBS := $(TOPDIR)/arch/xen/lib/lib.a $(LIBS) $(TOPDIR)/arch/xen/lib/lib.a

arch/xen/kernel: dummy
	$(MAKE) linuxsubdirs SUBDIRS=arch/xen/kernel

arch/xen/mm: dummy
	$(MAKE) linuxsubdirs SUBDIRS=arch/xen/mm

arch/xen/drivers/console: dummy
	$(MAKE) linuxsubdirs SUBDIRS=arch/xen/drivers/console

arch/xen/drivers/network: dummy
	$(MAKE) linuxsubdirs SUBDIRS=arch/xen/drivers/network

arch/xen/drivers/block: dummy
	$(MAKE) linuxsubdirs SUBDIRS=arch/xen/drivers/block

arch/xen/drivers/dom0: dummy
	$(MAKE) linuxsubdirs SUBDIRS=arch/xen/drivers/dom0

arch/xen/drivers/balloon: dummy
	$(MAKE) linuxsubdirs SUBDIRS=arch/xen/drivers/balloon

MAKEBOOT = $(MAKE) -C arch/$(ARCH)/boot

vmlinux: arch/xen/vmlinux.lds

FORCE: ;

.PHONY: bzImage compressed clean archclean archmrproper archdep


bzImage: vmlinux
	@$(MAKEBOOT) bzImage

INSTALL_NAME ?= $(KERNELRELEASE)
install: bzImage
	mkdir -p $(INSTALL_PATH)/boot
	install -m0644 arch/$(ARCH)/boot/bzImage $(INSTALL_PATH)/boot/vmlinuz-$(INSTALL_NAME)$(INSTALL_SUFFIX)
	install -m0644 vmlinux $(INSTALL_PATH)/boot/vmlinux-syms-$(INSTALL_NAME)$(INSTALL_SUFFIX)
	install -m0664 .config $(INSTALL_PATH)/boot/config-$(INSTALL_NAME)$(INSTALL_SUFFIX)
	install -m0664 System.map $(INSTALL_PATH)/boot/System.map-$(INSTALL_NAME)$(INSTALL_SUFFIX)

%_config: arch/xen/defconfig-%
	rm -f .config arch/xen/defconfig
	cp -f arch/xen/defconfig-$(@:_config=) arch/xen/defconfig
	cp -f arch/xen/defconfig-$(@:_config=) .config


archclean:
	@$(MAKEBOOT) clean

archmrproper:
	rm -f include/asm-xen/xen-public/arch

archdep:
	@$(MAKEBOOT) dep