Subversion Repositories HelenOS

Rev

Rev 2088 | Rev 2577 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2088 Rev 2128
1
#
1
#
2
# Copyright (c) 2006 Martin Decky
2
# Copyright (c) 2006 Martin Decky
3
# All rights reserved.
3
# All rights reserved.
4
#
4
#
5
# Redistribution and use in source and binary forms, with or without
5
# Redistribution and use in source and binary forms, with or without
6
# modification, are permitted provided that the following conditions
6
# modification, are permitted provided that the following conditions
7
# are met:
7
# are met:
8
#
8
#
9
# - Redistributions of source code must retain the above copyright
9
# - Redistributions of source code must retain the above copyright
10
#   notice, this list of conditions and the following disclaimer.
10
#   notice, this list of conditions and the following disclaimer.
11
# - Redistributions in binary form must reproduce the above copyright
11
# - Redistributions in binary form must reproduce the above copyright
12
#   notice, this list of conditions and the following disclaimer in the
12
#   notice, this list of conditions and the following disclaimer in the
13
#   documentation and/or other materials provided with the distribution.
13
#   documentation and/or other materials provided with the distribution.
14
# - The name of the author may not be used to endorse or promote products
14
# - The name of the author may not be used to endorse or promote products
15
#   derived from this software without specific prior written permission.
15
#   derived from this software without specific prior written permission.
16
#
16
#
17
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
#
27
#
28
 
28
 
29
## Include configuration
29
## Include configuration
30
#
30
#
31
 
31
 
32
-include Makefile.config
32
-include Makefile.config
33
 
33
 
34
## Setup platform configuration
34
## Setup platform configuration
35
#
35
#
36
 
36
 
37
ifeq ($(PLATFORM),amd64)
37
ifeq ($(PLATFORM),amd64)
38
	KARCH = amd64
38
	KARCH = amd64
39
	MACHINE = opteron
39
	MACHINE = opteron
40
	UARCH = amd64
40
	UARCH = amd64
41
	BARCH = amd64
41
	BARCH = amd64
42
endif
42
endif
43
 
43
 
-
 
44
ifeq ($(PLATFORM),arm32)
-
 
45
	KARCH = arm32
-
 
46
	UARCH = arm32
-
 
47
	BARCH = arm32
-
 
48
endif
-
 
49
 
44
ifeq ($(PLATFORM),ia32)
50
ifeq ($(PLATFORM),ia32)
45
	KARCH = ia32
51
	KARCH = ia32
46
	UARCH = ia32
52
	UARCH = ia32
47
	BARCH = ia32
53
	BARCH = ia32
48
endif
54
endif
49
 
55
 
50
ifeq ($(PLATFORM),ia64)
56
ifeq ($(PLATFORM),ia64)
51
	KARCH = ia64
57
	KARCH = ia64
52
	UARCH = ia64
58
	UARCH = ia64
53
	BARCH = ia64
59
	BARCH = ia64
54
endif
60
endif
55
 
61
 
56
ifeq ($(PLATFORM),mips32)
62
ifeq ($(PLATFORM),mips32)
57
	KARCH = mips32
63
	KARCH = mips32
58
	BARCH = mips32
64
	BARCH = mips32
59
	
65
	
60
	ifeq ($(MACHINE),msim)
66
	ifeq ($(MACHINE),msim)
61
		UARCH = mips32
67
		UARCH = mips32
62
		IMAGE = binary
68
		IMAGE = binary
63
	endif
69
	endif
64
	
70
	
65
	ifeq ($(MACHINE),simics)
71
	ifeq ($(MACHINE),simics)
66
		UARCH = mips32
72
		UARCH = mips32
67
		IMAGE = ecoff
73
		IMAGE = ecoff
68
	endif
74
	endif
69
	
75
	
70
	ifeq ($(MACHINE),bgxemul)
76
	ifeq ($(MACHINE),bgxemul)
71
		UARCH = mips32eb
77
		UARCH = mips32eb
72
		IMAGE = ecoff
78
		IMAGE = ecoff
73
	endif
79
	endif
74
	
80
	
75
	ifeq ($(MACHINE),lgxemul)
81
	ifeq ($(MACHINE),lgxemul)
76
		UARCH = mips32
82
		UARCH = mips32
77
		IMAGE = ecoff
83
		IMAGE = ecoff
78
	endif
84
	endif
79
	
85
	
80
	ifeq ($(MACHINE),indy)
86
	ifeq ($(MACHINE),indy)
81
		UARCH = mips32eb
87
		UARCH = mips32eb
82
		IMAGE = ecoff
88
		IMAGE = ecoff
83
	endif
89
	endif
84
endif
90
endif
85
 
91
 
86
ifeq ($(PLATFORM),ppc32)
92
ifeq ($(PLATFORM),ppc32)
87
	KARCH = ppc32
93
	KARCH = ppc32
88
	UARCH = ppc32
94
	UARCH = ppc32
89
	BARCH = ppc32
95
	BARCH = ppc32
90
endif
96
endif
91
 
97
 
92
ifeq ($(PLATFORM),ppc64)
98
ifeq ($(PLATFORM),ppc64)
93
	KARCH = ppc64
99
	KARCH = ppc64
94
	UARCH = ppc64
100
	UARCH = ppc64
95
	BARCH = ppc64
101
	BARCH = ppc64
96
endif
102
endif
97
 
103
 
98
ifeq ($(PLATFORM),sparc64)
104
ifeq ($(PLATFORM),sparc64)
99
	KARCH = sparc64
105
	KARCH = sparc64
100
	UARCH = sparc64
106
	UARCH = sparc64
101
	BARCH = sparc64
107
	BARCH = sparc64
102
endif
108
endif
103
 
109
 
104
ifeq ($(PLATFORM),ia32xen)
110
ifeq ($(PLATFORM),ia32xen)
105
	KARCH = ia32xen
111
	KARCH = ia32xen
106
	UARCH = ia32
112
	UARCH = ia32
107
	BARCH = ia32xen
113
	BARCH = ia32xen
108
endif
114
endif
109
 
115
 
110
.PHONY: all build config distclean clean
116
.PHONY: all build config distclean clean
111
 
117
 
112
all:
118
all:
113
	tools/config.py HelenOS.config default $(PLATFORM) $(COMPILER) $(CONFIG_DEBUG)
119
	tools/config.py HelenOS.config default $(PLATFORM) $(COMPILER) $(CONFIG_DEBUG)
114
	$(MAKE) -C . build
120
	$(MAKE) -C . build
115
 
121
 
116
build:
122
build:
117
ifneq ($(MACHINE),)
123
ifneq ($(MACHINE),)
118
	$(MAKE) -C kernel ARCH=$(KARCH) COMPILER=$(COMPILER) CONFIG_DEBUG=$(CONFIG_DEBUG) MACHINE=$(MACHINE)
124
	$(MAKE) -C kernel ARCH=$(KARCH) COMPILER=$(COMPILER) CONFIG_DEBUG=$(CONFIG_DEBUG) MACHINE=$(MACHINE)
119
else
125
else
120
	$(MAKE) -C kernel ARCH=$(KARCH) COMPILER=$(COMPILER) CONFIG_DEBUG=$(CONFIG_DEBUG)
126
	$(MAKE) -C kernel ARCH=$(KARCH) COMPILER=$(COMPILER) CONFIG_DEBUG=$(CONFIG_DEBUG)
121
endif
127
endif
122
	$(MAKE) -C uspace ARCH=$(UARCH) COMPILER=$(COMPILER) CONFIG_DEBUG=$(CONFIG_DEBUG)
128
	$(MAKE) -C uspace ARCH=$(UARCH) COMPILER=$(COMPILER) CONFIG_DEBUG=$(CONFIG_DEBUG)
123
ifneq ($(IMAGE),)
129
ifneq ($(IMAGE),)
124
	$(MAKE) -C boot ARCH=$(BARCH) COMPILER=$(COMPILER) CONFIG_DEBUG=$(CONFIG_DEBUG) IMAGE=$(IMAGE)
130
	$(MAKE) -C boot ARCH=$(BARCH) COMPILER=$(COMPILER) CONFIG_DEBUG=$(CONFIG_DEBUG) IMAGE=$(IMAGE)
125
else
131
else
126
	$(MAKE) -C boot ARCH=$(BARCH) COMPILER=$(COMPILER) CONFIG_DEBUG=$(CONFIG_DEBUG)
132
	$(MAKE) -C boot ARCH=$(BARCH) COMPILER=$(COMPILER) CONFIG_DEBUG=$(CONFIG_DEBUG)
127
endif
133
endif
128
 
134
 
129
config:
135
config:
130
	tools/config.py HelenOS.config
136
	tools/config.py HelenOS.config
131
 
137
 
132
distclean:
138
distclean:
133
	-rm Makefile.config
139
	-rm Makefile.config
134
	-$(MAKE) -C kernel distclean
140
	-$(MAKE) -C kernel distclean
135
	-$(MAKE) -C uspace distclean
141
	-$(MAKE) -C uspace distclean
136
	-$(MAKE) -C boot distclean
142
	-$(MAKE) -C boot distclean
137
 
143
 
138
clean:
144
clean:
139
	-$(MAKE) -C kernel clean
145
	-$(MAKE) -C kernel clean
140
	-$(MAKE) -C uspace clean
146
	-$(MAKE) -C uspace clean
141
	-$(MAKE) -C boot clean
147
	-$(MAKE) -C boot clean
142
 
148