Subversion Repositories HelenOS

Rev

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

Rev 3882 Rev 3885
1
#
1
#
2
# Copyright (c) 2005 Martin Decky
2
# Copyright (c) 2005 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
## Common compiler flags
29
## Common compiler flags
30
#
30
#
31
 
31
 
32
LIBC_PREFIX = $(shell pwd)
32
LIBC_PREFIX = $(shell pwd)
33
SOFTINT_PREFIX = ../softint
33
SOFTINT_PREFIX = ../softint
34
 
34
 
35
ifndef CROSS_PREFIX
-
 
36
	CROSS_PREFIX = /usr/local
-
 
37
endif
-
 
38
 
-
 
39
 
-
 
40
## Setup toolchain
35
## Setup toolchain
41
#
36
#
42
 
37
 
43
include $(LIBC_PREFIX)/Makefile.toolchain
38
include $(LIBC_PREFIX)/Makefile.toolchain
44
 
39
 
45
 
40
 
46
## Sources
41
## Sources
47
#
42
#
48
 
43
 
49
GENERIC_SOURCES = \
44
GENERIC_SOURCES = \
50
	generic/libc.c \
45
	generic/libc.c \
51
	generic/ddi.c \
46
	generic/ddi.c \
52
	generic/as.c \
47
	generic/as.c \
53
	generic/cap.c \
48
	generic/cap.c \
54
	generic/console.c \
49
	generic/console.c \
55
	generic/mem.c \
50
	generic/mem.c \
56
	generic/string.c \
51
	generic/string.c \
57
	generic/fibril.c \
52
	generic/fibril.c \
58
	generic/pcb.c \
53
	generic/pcb.c \
59
	generic/smc.c \
54
	generic/smc.c \
60
	generic/thread.c \
55
	generic/thread.c \
61
	generic/tls.c \
56
	generic/tls.c \
62
	generic/task.c \
57
	generic/task.c \
63
	generic/futex.c \
58
	generic/futex.c \
64
	generic/io/asprintf.c \
59
	generic/io/asprintf.c \
65
	generic/io/io.c \
60
	generic/io/io.c \
66
	generic/io/printf.c \
61
	generic/io/printf.c \
67
	generic/io/fprintf.c \
62
	generic/io/fprintf.c \
68
	generic/io/stdio.c \
63
	generic/io/stdio.c \
69
	generic/io/stream.c \
64
	generic/io/stream.c \
70
	generic/io/sprintf.c \
65
	generic/io/sprintf.c \
71
	generic/io/snprintf.c \
66
	generic/io/snprintf.c \
72
	generic/io/vprintf.c \
67
	generic/io/vprintf.c \
73
	generic/io/vsprintf.c \
68
	generic/io/vsprintf.c \
74
	generic/io/vsnprintf.c \
69
	generic/io/vsnprintf.c \
75
	generic/io/printf_core.c \
70
	generic/io/printf_core.c \
76
	malloc/malloc.c \
71
	malloc/malloc.c \
77
	generic/sysinfo.c \
72
	generic/sysinfo.c \
78
	generic/ipc.c \
73
	generic/ipc.c \
79
	generic/async.c \
74
	generic/async.c \
80
	generic/loader.c \
75
	generic/loader.c \
81
	generic/getopt.c \
76
	generic/getopt.c \
82
	generic/libadt/list.o \
77
	generic/libadt/list.o \
83
	generic/libadt/hash_table.o \
78
	generic/libadt/hash_table.o \
84
	generic/time.c \
79
	generic/time.c \
85
	generic/err.c \
80
	generic/err.c \
86
	generic/stdlib.c \
81
	generic/stdlib.c \
87
	generic/mman.c \
82
	generic/mman.c \
88
	generic/udebug.c \
83
	generic/udebug.c \
89
	generic/vfs/vfs.c \
84
	generic/vfs/vfs.c \
90
	generic/vfs/canonify.c
85
	generic/vfs/canonify.c
91
 
86
 
92
ARCH_SOURCES += \
87
ARCH_SOURCES += \
93
	arch/$(UARCH)/src/entry.s \
88
	arch/$(UARCH)/src/entry.s \
94
	arch/$(UARCH)/src/thread_entry.s
89
	arch/$(UARCH)/src/thread_entry.s
95
 
90
 
96
GENERIC_OBJECTS := $(addsuffix .o,$(basename $(GENERIC_SOURCES)))
91
GENERIC_OBJECTS := $(addsuffix .o,$(basename $(GENERIC_SOURCES)))
97
ARCH_OBJECTS := $(addsuffix .o,$(basename $(ARCH_SOURCES)))
92
ARCH_OBJECTS := $(addsuffix .o,$(basename $(ARCH_SOURCES)))
98
OBJECTS := $(GENERIC_OBJECTS) $(ARCH_OBJECTS)
93
OBJECTS := $(GENERIC_OBJECTS) $(ARCH_OBJECTS)
99
 
94
 
100
.PHONY: all clean depend kerninc
95
.PHONY: all clean depend kerninc
101
 
96
 
102
all: kerninc libc.a arch/$(UARCH)/_link.ld
97
all: kerninc libc.a arch/$(UARCH)/_link.ld
103
 
98
 
104
kerninc:
99
kerninc:
105
	ln -sfn ../../../../kernel/generic/include include/kernel
100
	ln -sfn ../../../../kernel/generic/include include/kernel
106
	ln -sfn kernel/arch include/arch
101
	ln -sfn kernel/arch include/arch
107
	ln -sfn ../arch/$(UARCH)/include include/libarch
102
	ln -sfn ../arch/$(UARCH)/include include/libarch
108
 
103
 
109
-include Makefile.depend
104
-include Makefile.depend
110
 
105
 
111
clean:
106
clean:
112
	-rm -f include/kernel include/arch include/libarch libc.a arch/$(UARCH)/_link.ld Makefile.depend
107
	-rm -f include/kernel include/arch include/libarch libc.a arch/$(UARCH)/_link.ld Makefile.depend
113
	find generic/ arch/$(UARCH)/ malloc -name '*.o' -follow -exec rm \{\} \;
108
	find generic/ arch/$(UARCH)/ malloc -name '*.o' -follow -exec rm \{\} \;
114
 
109
 
115
depend: kerninc
110
depend: kerninc
116
	-makedepend -f - -- $(DEPEND_DEFS) $(CFLAGS) -- $(ARCH_SOURCES) $(GENERIC_SOURCES) > Makefile.depend 2> /dev/null
111
	-makedepend -f - -- $(DEPEND_DEFS) $(CFLAGS) -- $(ARCH_SOURCES) $(GENERIC_SOURCES) > Makefile.depend 2> /dev/null
117
 
112
 
118
libc.a: depend $(ARCH_OBJECTS) $(GENERIC_OBJECTS)
113
libc.a: depend $(ARCH_OBJECTS) $(GENERIC_OBJECTS)
119
	$(AR) rc libc.a $(LIBS) $(ARCH_OBJECTS) $(GENERIC_OBJECTS)
114
	$(AR) rc libc.a $(LIBS) $(ARCH_OBJECTS) $(GENERIC_OBJECTS)
120
 
115
 
121
arch/$(UARCH)/_link.ld: arch/$(UARCH)/_link.ld.in
116
arch/$(UARCH)/_link.ld: arch/$(UARCH)/_link.ld.in
122
	$(CC) $(DEFS) $(CFLAGS) -DLIBC_PREFIX=$(LIBC_PREFIX) -E -x c $< | grep -v "^\#" > $@
117
	$(CC) $(DEFS) $(CFLAGS) -DLIBC_PREFIX=$(LIBC_PREFIX) -E -x c $< | grep -v "^\#" > $@
123
 
118
 
124
%.o: %.S
119
%.o: %.S
125
	$(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@
120
	$(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@
126
 
121
 
127
%.o: %.s
122
%.o: %.s
128
	$(AS) $(AFLAGS) $< -o $@
123
	$(AS) $(AFLAGS) $< -o $@
129
 
124
 
130
%.o: %.c
125
%.o: %.c
131
	$(CC) $(DEFS) $(CFLAGS) -c $< -o $@
126
	$(CC) $(DEFS) $(CFLAGS) -c $< -o $@
132
 
127