Subversion Repositories HelenOS

Rev

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

Rev 2726 Rev 2738
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 ../../../../version
29
include ../../../../version
30
include ../../../Makefile.config
30
include ../../../Makefile.config
31
 
31
 
32
## Toolchain configuration
32
## Toolchain configuration
33
#
33
#
34
 
34
 
35
TARGET = ia64-pc-linux-gnu
35
TARGET = ia64-pc-linux-gnu
36
TOOLCHAIN_DIR = /usr/local/ia64/bin
36
TOOLCHAIN_DIR = /usr/local/ia64/bin
37
 
37
 
38
ifeq ($(COMPILER),gcc_native)
38
ifeq ($(COMPILER),gcc_native)
39
	CC = gcc
39
	CC = gcc
40
	AS = as
40
	AS = as
41
	LD = ld
41
	LD = ld
42
	OBJCOPY = objcopy
42
	OBJCOPY = objcopy
43
	OBJDUMP = objdump
43
	OBJDUMP = objdump
-
 
44
	GEFI_PREXIX = 
44
endif
45
endif
45
 
46
 
46
ifeq ($(COMPILER),icc_native)
47
ifeq ($(COMPILER),icc_native)
47
	CC = icc
48
	CC = icc
48
	AS = as
49
	AS = as
49
	LD = ld
50
	LD = ld
50
	OBJCOPY = objcopy
51
	OBJCOPY = objcopy
51
	OBJDUMP = objdump
52
	OBJDUMP = objdump
52
endif
53
endif
53
 
54
 
54
ifeq ($(COMPILER),gcc_cross)
55
ifeq ($(COMPILER),gcc_cross)
55
	CC = $(TOOLCHAIN_DIR)/$(TARGET)-gcc
56
	CC = $(TOOLCHAIN_DIR)/$(TARGET)-gcc
56
	AS = $(TOOLCHAIN_DIR)/$(TARGET)-as
57
	AS = $(TOOLCHAIN_DIR)/$(TARGET)-as
57
	LD = $(TOOLCHAIN_DIR)/$(TARGET)-ld
58
	LD = $(TOOLCHAIN_DIR)/$(TARGET)-ld
58
	OBJCOPY = $(TOOLCHAIN_DIR)/$(TARGET)-objcopy
59
	OBJCOPY = $(TOOLCHAIN_DIR)/$(TARGET)-objcopy
59
	OBJDUMP = $(TOOLCHAIN_DIR)/$(TARGET)-objdump
60
	OBJDUMP = $(TOOLCHAIN_DIR)/$(TARGET)-objdump
-
 
61
	GEFI_PREFIX = $(TOOLCHAIN_DIR)/$(TARGET)-
60
endif
62
endif
61
 
63
 
62
#-mno-pic means do not use gp + imm22 to address data
64
#-mno-pic means do not use gp + imm22 to address data
63
CFLAGS = -DRELEASE=\"$(RELEASE)\" -I. -I../../../generic -I../../../genarch -I../../../../kernel/generic/include -nostdinc -nostdlib -fno-builtin -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O3 -fno-unwind-tables -mfixed-range=f32-f127 -mno-pic
65
CFLAGS = -DRELEASE=\"$(RELEASE)\" -I. -I../../../generic -I../../../genarch -I../../../../kernel/generic/include -nostdinc -nostdlib -fno-builtin -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O3 -fno-unwind-tables -mfixed-range=f32-f127 -mno-pic
64
 
66
 
65
ifdef REVISION
67
ifdef REVISION
66
	CFLAGS += "-DREVISION=\"$(REVISION)\""
68
	CFLAGS += "-DREVISION=\"$(REVISION)\""
67
endif
69
endif
68
 
70
 
69
ifdef TIMESTAMP
71
ifdef TIMESTAMP
70
	CFLAGS += "-DTIMESTAMP=\"$(TIMESTAMP)\""
72
	CFLAGS += "-DTIMESTAMP=\"$(TIMESTAMP)\""
71
endif
73
endif
72
 
74
 
73
SOURCES = \
75
SOURCES = \
74
	main.c \
76
	main.c \
75
	../../../generic/printf.c \
77
	../../../generic/printf.c \
76
	../../../generic/string.c \
78
	../../../generic/string.c \
77
	../../../genarch/balloc.c \
79
	../../../genarch/balloc.c \
78
	asm.S \
80
	asm.S \
79
	boot.S
81
	boot.S
80
 
82
 
81
COMPONENTS = \
83
COMPONENTS = \
82
	$(KERNELDIR)/kernel.bin \
84
	$(KERNELDIR)/kernel.bin \
83
	$(USPACEDIR)/srv/ns/ns \
85
	$(USPACEDIR)/srv/ns/ns \
84
	$(USPACEDIR)/srv/fb/fb \
86
	$(USPACEDIR)/srv/fb/fb \
85
	$(USPACEDIR)/srv/kbd/kbd \
87
	$(USPACEDIR)/srv/kbd/kbd \
86
	$(USPACEDIR)/srv/console/console \
88
	$(USPACEDIR)/srv/console/console \
87
	$(USPACEDIR)/srv/vfs/vfs \
89
	$(USPACEDIR)/srv/vfs/vfs \
88
	$(USPACEDIR)/srv/fs/tmpfs/tmpfs \
90
	$(USPACEDIR)/srv/fs/tmpfs/tmpfs \
89
	$(USPACEDIR)/srv/fs/fat/fat \
91
	$(USPACEDIR)/srv/fs/fat/fat \
90
	$(USPACEDIR)/srv/devmap/devmap \
92
	$(USPACEDIR)/srv/devmap/devmap \
91
	$(USPACEDIR)/app/init/init \
93
	$(USPACEDIR)/app/init/init \
92
	$(USPACEDIR)/app/tetris/tetris \
94
	$(USPACEDIR)/app/tetris/tetris \
93
	$(USPACEDIR)/app/tester/tester \
95
	$(USPACEDIR)/app/tester/tester \
94
	$(USPACEDIR)/app/klog/klog
96
	$(USPACEDIR)/app/klog/klog
95
 
97
 
96
 
98
 
97
OBJECTS := $(addsuffix .o,$(basename $(SOURCES)))
99
OBJECTS := $(addsuffix .o,$(basename $(SOURCES)))
98
COMPONENT_OBJECTS := $(addsuffix .o,$(basename $(notdir $(COMPONENTS))))
100
COMPONENT_OBJECTS := $(addsuffix .o,$(basename $(notdir $(COMPONENTS))))
99
 
101
 
100
.PHONY: all clean depend
102
.PHONY: all clean depend
101
 
103
 
102
all: hello.efi disasm
104
all: hello.efi disasm
103
 
105
 
104
-include Makefile.depend
106
-include Makefile.depend
105
 
107
 
106
 
108
 
107
hello.efi: image.boot
109
hello.efi: image.boot
108
	make -C gefi/HelenOS
110
	make -C gefi/HelenOS PREFIX=$(GEFI_PREFIX)
109
	cp gefi/HelenOS/hello.efi ../../../../
111
	cp gefi/HelenOS/hello.efi ../../../../
110
	cp gefi/HelenOS/hello.efi /boot/efi/
112
#	cp gefi/HelenOS/hello.efi /boot/efi/
111
	cp gefi/HelenOS/image.bin /boot/efi/
113
	cp gefi/HelenOS/image.bin ../../../../
112
 
114
 
113
image.boot: depend _components.h _link.ld $(COMPONENT_OBJECTS) $(OBJECTS)
115
image.boot: depend _components.h _link.ld $(COMPONENT_OBJECTS) $(OBJECTS)
114
	$(LD) -Map boot.map -no-check-sections -N -T _link.ld $(COMPONENT_OBJECTS) $(OBJECTS) -o $@
116
	$(LD) -Map boot.map -no-check-sections -N -T _link.ld $(COMPONENT_OBJECTS) $(OBJECTS) -o $@
115
 
117
 
116
depend:
118
depend:
117
	-makedepend $(DEFS) $(CFLAGS) -f - $(SOURCES) > Makefile.depend 2> /dev/null
119
	-makedepend $(DEFS) $(CFLAGS) -f - $(SOURCES) > Makefile.depend 2> /dev/null
118
 
120
 
119
clean:
121
clean:
120
	-rm -f _components.h _link.ld $(COMPONENT_OBJECTS) $(OBJECTS) image.boot boot.disasm Makefile.depend
122
	-rm -f _components.h _link.ld $(COMPONENT_OBJECTS) $(OBJECTS) image.boot boot.disasm Makefile.depend
121
	make -C gefi/HelenOS clean
123
	make -C gefi/HelenOS clean
122
 
124
 
123
_components.h _link.ld $(COMPONENT_OBJECTS): $(COMPONENTS)
125
_components.h _link.ld $(COMPONENT_OBJECTS): $(COMPONENTS)
124
	./pack $(IMAGE) $(OBJCOPY) $(COMPONENTS)
126
	./pack $(IMAGE) $(OBJCOPY) $(COMPONENTS)
125
 
127
 
126
%.o: %.S
128
%.o: %.S
127
	$(CC) $(DEFS) $(CFLAGS) -D__ASM__ -c $< -o $@
129
	$(CC) $(DEFS) $(CFLAGS) -D__ASM__ -c $< -o $@
128
 
130
 
129
%.o: %.c
131
%.o: %.c
130
	$(CC) $(DEFS) $(CFLAGS) -c $< -o $@
132
	$(CC) $(DEFS) $(CFLAGS) -c $< -o $@
131
 
133
 
132
disasm: image.boot
134
disasm: image.boot
133
	$(OBJDUMP) -d image.boot > boot.disasm
135
	$(OBJDUMP) -d image.boot > boot.disasm
134
 
136