Subversion Repositories HelenOS

Rev

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

Rev 3535 Rev 3564
1
#
1
#
2
# Copyright (c) 2005 Martin Decky
2
# Copyright (c) 2005 Martin Decky
3
# Copyright (c) 2008 Jiri Svoboda
3
# Copyright (c) 2008 Jiri Svoboda
4
# All rights reserved.
4
# All rights reserved.
5
#
5
#
6
# Redistribution and use in source and binary forms, with or without
6
# Redistribution and use in source and binary forms, with or without
7
# modification, are permitted provided that the following conditions
7
# modification, are permitted provided that the following conditions
8
# are met:
8
# are met:
9
#
9
#
10
# - Redistributions of source code must retain the above copyright
10
# - Redistributions of source code must retain the above copyright
11
#   notice, this list of conditions and the following disclaimer.
11
#   notice, this list of conditions and the following disclaimer.
12
# - Redistributions in binary form must reproduce the above copyright
12
# - Redistributions in binary form must reproduce the above copyright
13
#   notice, this list of conditions and the following disclaimer in the
13
#   notice, this list of conditions and the following disclaimer in the
14
#   documentation and/or other materials provided with the distribution.
14
#   documentation and/or other materials provided with the distribution.
15
# - The name of the author may not be used to endorse or promote products
15
# - The name of the author may not be used to endorse or promote products
16
#   derived from this software without specific prior written permission.
16
#   derived from this software without specific prior written permission.
17
#
17
#
18
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
#
28
#
29
 
29
 
30
## Common compiler flags
30
## Common compiler flags
31
#
31
#
32
 
32
 
33
LIBC_PREFIX = $(shell pwd)
33
LIBC_PREFIX = $(shell pwd)
34
SOFTINT_PREFIX = ../softint
34
SOFTINT_PREFIX = ../softint
35
CONSOLE_PREFIX = ../../srv/console
35
CONSOLE_PREFIX = ../../srv/console
36
 
36
 
37
## Setup toolchain
37
## Setup toolchain
38
#
38
#
39
 
39
 
40
include $(LIBC_PREFIX)/Makefile.toolchain
40
include $(LIBC_PREFIX)/Makefile.toolchain
41
 
41
 
42
CFLAGS += -I$(CONSOLE_PREFIX)
42
CFLAGS += -I$(CONSOLE_PREFIX)
43
PIC_CFLAGS := $(CFLAGS) -fPIC -D__PIC__
43
PIC_CFLAGS := $(CFLAGS) -fPIC -D__IN_SHARED_LIBC__
44
 
44
 
45
## Sources
45
## Sources
46
#
46
#
47
 
47
 
48
 
48
 
49
GENERIC_SOURCES = \
49
GENERIC_SOURCES = \
50
	generic/libc.c \
50
	generic/libc.c \
51
	generic/ddi.c \
51
	generic/ddi.c \
52
	generic/as.c \
52
	generic/as.c \
53
	generic/cap.c \
53
	generic/cap.c \
54
	generic/string.c \
54
	generic/string.c \
55
	generic/fibril.c \
55
	generic/fibril.c \
56
	generic/pcb.c \
56
	generic/pcb.c \
57
	generic/smc.c \
57
	generic/smc.c \
58
	generic/thread.c \
58
	generic/thread.c \
59
	generic/tls.c \
59
	generic/tls.c \
60
	generic/task.c \
60
	generic/task.c \
61
	generic/futex.c \
61
	generic/futex.c \
62
	generic/io/asprintf.c \
62
	generic/io/asprintf.c \
63
	generic/io/io.c \
63
	generic/io/io.c \
64
	generic/io/printf.c \
64
	generic/io/printf.c \
65
	generic/io/stream.c \
65
	generic/io/stream.c \
66
	generic/io/sprintf.c \
66
	generic/io/sprintf.c \
67
	generic/io/snprintf.c \
67
	generic/io/snprintf.c \
68
	generic/io/vprintf.c \
68
	generic/io/vprintf.c \
69
	generic/io/vsprintf.c \
69
	generic/io/vsprintf.c \
70
	generic/io/vsnprintf.c \
70
	generic/io/vsnprintf.c \
71
	generic/io/printf_core.c \
71
	generic/io/printf_core.c \
72
	malloc/malloc.c \
72
	malloc/malloc.c \
73
	generic/sysinfo.c \
73
	generic/sysinfo.c \
74
	generic/ipc.c \
74
	generic/ipc.c \
75
	generic/async.c \
75
	generic/async.c \
76
	generic/loader.c \
76
	generic/loader.c \
77
	generic/getopt.c \
77
	generic/getopt.c \
78
	generic/libadt/list.o \
78
	generic/libadt/list.o \
79
	generic/libadt/hash_table.o \
79
	generic/libadt/hash_table.o \
80
	generic/time.c \
80
	generic/time.c \
81
	generic/err.c \
81
	generic/err.c \
82
	generic/stdlib.c \
82
	generic/stdlib.c \
83
	generic/mman.c \
83
	generic/mman.c \
84
	generic/udebug.c \
84
	generic/udebug.c \
85
	generic/vfs/vfs.c \
85
	generic/vfs/vfs.c \
86
	generic/vfs/canonify.c
86
	generic/vfs/canonify.c
87
 
87
 
88
ARCH_SOURCES += \
88
ARCH_SOURCES += \
89
	arch/$(ARCH)/src/entry.s \
89
	arch/$(ARCH)/src/entry.s \
90
	arch/$(ARCH)/src/thread_entry.s
90
	arch/$(ARCH)/src/thread_entry.s
91
 
91
 
92
GENERIC_OBJECTS := $(addsuffix .o,$(basename $(GENERIC_SOURCES)))
92
GENERIC_OBJECTS := $(addsuffix .o,$(basename $(GENERIC_SOURCES)))
93
ARCH_OBJECTS := $(addsuffix .o,$(basename $(ARCH_SOURCES)))
93
ARCH_OBJECTS := $(addsuffix .o,$(basename $(ARCH_SOURCES)))
94
 
94
 
95
OBJECTS = $(GENERIC_OBJECTS) $(ARCH_OBJECTS)
95
OBJECTS = $(GENERIC_OBJECTS) $(ARCH_OBJECTS)
96
PIC_OBJECTS = $(addsuffix .pio,$(basename $(OBJECTS)))
96
PIC_OBJECTS = $(addsuffix .pio,$(basename $(OBJECTS)))
97
 
97
 
98
.PHONY: all clean depend kerninc
98
.PHONY: all clean depend kerninc
99
 
99
 
100
all: kerninc libc.a libc.pic.a arch/$(ARCH)/_link.ld
100
all: kerninc libc.a libc.pic.a arch/$(ARCH)/_link.ld
101
 
101
 
102
kerninc:
102
kerninc:
103
	ln -sfn ../../../../kernel/generic/include include/kernel
103
	ln -sfn ../../../../kernel/generic/include include/kernel
104
	ln -sfn kernel/arch include/arch
104
	ln -sfn kernel/arch include/arch
105
	ln -sfn ../arch/$(ARCH)/include include/libarch
105
	ln -sfn ../arch/$(ARCH)/include include/libarch
106
 
106
 
107
-include Makefile.depend
107
-include Makefile.depend
108
 
108
 
109
clean:
109
clean:
110
	-rm -f include/kernel include/arch include/libarch libc.a libc.pic.a arch/$(ARCH)/_link.ld Makefile.depend
110
	-rm -f include/kernel include/arch include/libarch libc.a libc.pic.a arch/$(ARCH)/_link.ld Makefile.depend
111
	find . \( -name '*.o' -o -name '*.pio' \) -follow -exec rm \{\} \;
111
	find . \( -name '*.o' -o -name '*.pio' \) -follow -exec rm \{\} \;
112
 
112
 
113
depend: kerninc
113
depend: kerninc
114
	-makedepend -f - -- $(DEFS) $(CFLAGS) -- $(ARCH_SOURCES) $(GENERIC_SOURCES) > Makefile.depend 2> /dev/null
114
	-makedepend -f - -- $(DEFS) $(CFLAGS) -- $(ARCH_SOURCES) $(GENERIC_SOURCES) > Makefile.depend 2> /dev/null
115
	-makedepend $(DEFS) $(PIC_CFLAGS) -o.pio -f - $(ARCH_SOURCES) $(GENERIC_SOURCES) >> Makefile.depend 2> /dev/null
115
	-makedepend $(DEFS) $(PIC_CFLAGS) -o.pio -f - $(ARCH_SOURCES) $(GENERIC_SOURCES) >> Makefile.depend 2> /dev/null
116
 
116
 
117
libc.a: depend $(OBJECTS)
117
libc.a: depend $(OBJECTS)
118
	$(AR) rc $@ $(LIBS) $(OBJECTS)
118
	$(AR) rc $@ $(LIBS) $(OBJECTS)
119
 
119
 
120
libc.pic.a: depend $(PIC_OBJECTS)
120
libc.pic.a: depend $(PIC_OBJECTS)
121
	$(AR) rc $@ $(LIBS) $(PIC_OBJECTS)
121
	$(AR) rc $@ $(LIBS) $(PIC_OBJECTS)
122
 
122
 
123
arch/$(ARCH)/_link.ld: arch/$(ARCH)/_link.ld.in
123
arch/$(ARCH)/_link.ld: arch/$(ARCH)/_link.ld.in
124
	$(CC) $(DEFS) $(CFLAGS) -DLIBC_PREFIX=$(LIBC_PREFIX) -E -x c $< | grep -v "^\#" > $@
124
	$(CC) $(DEFS) $(CFLAGS) -DLIBC_PREFIX=$(LIBC_PREFIX) -E -x c $< | grep -v "^\#" > $@
125
 
125
 
126
%.o: %.S
126
%.o: %.S
127
	$(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@
127
	$(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@
128
 
128
 
129
%.o: %.s
129
%.o: %.s
130
	$(AS) $(AFLAGS) $< -o $@
130
	$(AS) $(AFLAGS) $< -o $@
131
 
131
 
132
%.o: %.c
132
%.o: %.c
133
	$(CC) $(DEFS) $(CFLAGS) -c $< -o $@
133
	$(CC) $(DEFS) $(CFLAGS) -c $< -o $@
134
 
134
 
135
%.pio: %.S
135
%.pio: %.S
136
	$(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@
136
	$(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@
137
 
137
 
138
%.pio: %.s
138
%.pio: %.s
139
	$(AS) $(AFLAGS) $< -o $@
139
	$(AS) $(AFLAGS) $< -o $@
140
 
140
 
141
%.pio: %.c
141
%.pio: %.c
142
	$(CC) $(DEFS) $(PIC_CFLAGS) -c $< -o $@
142
	$(CC) $(DEFS) $(PIC_CFLAGS) -c $< -o $@
143
 
143