aboutsummaryrefslogtreecommitdiffstats
path: root/xenolinux-2.4.23-sparse/arch/xeno/Makefile
blob: 815c28107b2b03a697bf703737c013fc8613823c (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
#
# xeno/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
#

LD=$(CROSS_COMPILE)ld -m elf_i386
OBJCOPY=$(CROSS_COMPILE)objcopy -O binary -R .note -R .comment -S
LDFLAGS=-e stext
LINKFLAGS =-T $(TOPDIR)/arch/xeno/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

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

SUBDIRS += arch/xeno/kernel arch/xeno/mm arch/xeno/lib
SUBDIRS += arch/xeno/drivers/console arch/xeno/drivers/network
SUBDIRS += arch/xeno/drivers/block arch/xeno/drivers/balloon
ifdef CONFIG_XENO_PRIV
SUBDIRS += arch/xeno/drivers/dom0 
endif

CORE_FILES += arch/xeno/kernel/kernel.o arch/xeno/mm/mm.o
CORE_FILES += arch/xeno/drivers/console/con.o
CORE_FILES += arch/xeno/drivers/block/blk.o
CORE_FILES += arch/xeno/drivers/network/net.o
ifdef CONFIG_XENO_PRIV
CORE_FILES += arch/xeno/drivers/dom0/dom0.o
endif
CORE_FILES += arch/xeno/drivers/balloon/balloon_driver.o
LIBS := $(TOPDIR)/arch/xeno/lib/lib.a $(LIBS) $(TOPDIR)/arch/xeno/lib/lib.a

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

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

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

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

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

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

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

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

vmlinux: arch/xeno/vmlinux.lds

FORCE: ;

.PHONY: bzImage compressed clean archclean archmrproper archdep

bzImage: vmlinux
	@$(MAKEBOOT) xenolinux.gz

install: bzImage
	mkdir -p /boot
	cp -a arch/$(ARCH)/boot/xenolinux.gz /boot/xenolinux.gz

dist: bzImage
	mkdir -p ../install/boot
	cp -a arch/$(ARCH)/boot/xenolinux.gz ../install/boot/xenolinux.gz

archclean:
	@$(MAKEBOOT) clean

archmrproper:

archdep:
	@$(MAKEBOOT) dep