Rev 4373 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4373 | Rev 4691 | ||
---|---|---|---|
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 | 35 | ||
- | 36 | ||
36 | ## Setup toolchain |
37 | ## Setup toolchain |
37 | # |
38 | # |
38 | 39 | ||
39 | include $(LIBC_PREFIX)/Makefile.toolchain |
40 | include $(LIBC_PREFIX)/Makefile.toolchain |
40 | -include rtld/arch/$(UARCH)/Makefile.inc |
41 | -include rtld/arch/$(UARCH)/Makefile.inc |
41 | 42 | ||
42 | CFLAGS += -Irtld/include -I../../srv/loader/include -D__32_BITS__ |
43 | CFLAGS += -Irtld/include -I../../srv/loader/include -D__32_BITS__ |
43 | PIC_CFLAGS := $(CFLAGS) -fPIC -D__IN_SHARED_LIBC__ |
44 | PIC_CFLAGS := $(CFLAGS) -fPIC -D__IN_SHARED_LIBC__ |
44 | 45 | ||
45 | ## Sources |
46 | ## Sources |
46 | # |
47 | # |
47 | 48 | ||
48 | GENERIC_SOURCES = \ |
49 | GENERIC_SOURCES = \ |
49 | generic/libc.c \ |
50 | generic/libc.c \ |
50 | generic/ddi.c \ |
51 | generic/ddi.c \ |
51 | generic/as.c \ |
52 | generic/as.c \ |
52 | generic/cap.c \ |
53 | generic/cap.c \ |
53 | generic/console.c \ |
54 | generic/devmap.c \ |
54 | generic/event.c \ |
55 | generic/event.c \ |
- | 56 | generic/errno.c \ |
|
55 | generic/mem.c \ |
57 | generic/mem.c \ |
56 | generic/string.c \ |
58 | generic/string.c \ |
57 | generic/fibril.c \ |
59 | generic/fibril.c \ |
- | 60 | generic/fibril_sync.c \ |
|
58 | generic/pcb.c \ |
61 | generic/pcb.c \ |
59 | generic/smc.c \ |
62 | generic/smc.c \ |
60 | generic/thread.c \ |
63 | generic/thread.c \ |
61 | generic/tls.c \ |
64 | generic/tls.c \ |
62 | generic/task.c \ |
65 | generic/task.c \ |
63 | generic/futex.c \ |
66 | generic/futex.c \ |
64 | generic/io/asprintf.c \ |
67 | generic/io/asprintf.c \ |
65 | generic/io/io.c \ |
68 | generic/io/io.c \ |
66 | generic/io/printf.c \ |
69 | generic/io/printf.c \ |
67 | generic/io/fprintf.c \ |
- | |
68 | generic/io/stdio.c \ |
70 | generic/io/klog.c \ |
69 | generic/io/stream.c \ |
- | |
70 | generic/io/sprintf.c \ |
- | |
71 | generic/io/snprintf.c \ |
71 | generic/io/snprintf.c \ |
72 | generic/io/vprintf.c \ |
72 | generic/io/vprintf.c \ |
73 | generic/io/vsprintf.c \ |
- | |
74 | generic/io/vsnprintf.c \ |
73 | generic/io/vsnprintf.c \ |
75 | generic/io/printf_core.c \ |
74 | generic/io/printf_core.c \ |
- | 75 | generic/io/console.c \ |
|
76 | malloc/malloc.c \ |
76 | generic/malloc.c \ |
77 | generic/sysinfo.c \ |
77 | generic/sysinfo.c \ |
78 | generic/ipc.c \ |
78 | generic/ipc.c \ |
79 | generic/async.c \ |
79 | generic/async.c \ |
80 | generic/dlfcn.c \ |
80 | generic/dlfcn.c \ |
81 | generic/loader.c \ |
81 | generic/loader.c \ |
82 | generic/getopt.c \ |
82 | generic/getopt.c \ |
83 | generic/libadt/list.o \ |
83 | generic/adt/list.o \ |
84 | generic/libadt/hash_table.o \ |
84 | generic/adt/hash_table.o \ |
85 | generic/time.c \ |
85 | generic/time.c \ |
86 | generic/err.c \ |
86 | generic/err.c \ |
87 | generic/stdlib.c \ |
87 | generic/stdlib.c \ |
88 | generic/kbd.c \ |
- | |
89 | generic/mman.c \ |
88 | generic/mman.c \ |
90 | generic/udebug.c \ |
89 | generic/udebug.c \ |
91 | generic/vfs/vfs.c \ |
90 | generic/vfs/vfs.c \ |
92 | generic/vfs/canonify.c \ |
91 | generic/vfs/canonify.c \ |
93 | rtld/rtld.c \ |
92 | rtld/rtld.c \ |
94 | rtld/elf_load.c \ |
93 | rtld/elf_load.c \ |
95 | rtld/dynamic.c \ |
94 | rtld/dynamic.c \ |
96 | rtld/module.c \ |
95 | rtld/module.c \ |
97 | rtld/symbol.c |
96 | rtld/symbol.c |
98 | 97 | ||
99 | 98 | ||
100 | ARCH_SOURCES += \ |
99 | ARCH_SOURCES += \ |
101 | arch/$(UARCH)/src/entry.s \ |
100 | arch/$(UARCH)/src/entry.s \ |
102 | arch/$(UARCH)/src/thread_entry.s |
101 | arch/$(UARCH)/src/thread_entry.s |
103 | 102 | ||
104 | GENERIC_OBJECTS := $(addsuffix .o,$(basename $(GENERIC_SOURCES))) |
103 | GENERIC_OBJECTS := $(addsuffix .o,$(basename $(GENERIC_SOURCES))) |
105 | ARCH_OBJECTS := $(addsuffix .o,$(basename $(ARCH_SOURCES))) |
104 | ARCH_OBJECTS := $(addsuffix .o,$(basename $(ARCH_SOURCES))) |
106 | OBJECTS := $(GENERIC_OBJECTS) $(ARCH_OBJECTS) |
105 | OBJECTS := $(GENERIC_OBJECTS) $(ARCH_OBJECTS) |
107 | PIC_OBJECTS := $(addsuffix .pio,$(basename $(OBJECTS))) |
106 | PIC_OBJECTS := $(addsuffix .pio,$(basename $(OBJECTS))) |
108 | 107 | ||
109 | OUTPUT := libc.a |
108 | OUTPUT := libc.a |
110 | 109 | ||
111 | ifeq ($(CONFIG_BUILD_SHARED_LIBC), y) |
110 | ifeq ($(CONFIG_BUILD_SHARED_LIBC), y) |
112 | OUTPUT += libc.pic.a |
111 | OUTPUT += libc.pic.a |
113 | endif |
112 | endif |
114 | 113 | ||
115 | .PHONY: all clean depend kerninc |
114 | .PHONY: all clean depend kerninc |
116 | 115 | ||
117 | all: kerninc $(OUTPUT) arch/$(UARCH)/_link.ld |
116 | all: kerninc $(OUTPUT) arch/$(UARCH)/_link.ld |
118 | 117 | ||
119 | kerninc: |
118 | kerninc: |
120 | ln -sfn ../../../../kernel/generic/include include/kernel |
119 | ln -sfn ../../../../kernel/generic/include include/kernel |
121 | ln -sfn kernel/arch include/arch |
120 | ln -sfn kernel/arch include/arch |
122 | ln -sfn ../arch/$(UARCH)/include include/libarch |
121 | ln -sfn ../arch/$(UARCH)/include include/libarch |
123 | ln -sfn ../arch/$(UARCH)/include rtld/include/arch |
122 | ln -sfn ../arch/$(UARCH)/include rtld/include/arch |
124 | 123 | ||
125 | -include Makefile.depend |
124 | -include Makefile.depend |
126 | 125 | ||
127 | clean: |
126 | clean: |
128 | -rm -f include/kernel include/arch include/libarch rtld/include/arch libc.a libc.pic.a arch/$(UARCH)/_link.ld Makefile.depend |
127 | -rm -f include/kernel include/arch include/libarch rtld/include/arch libc.a libc.pic.a arch/$(UARCH)/_link.ld Makefile.depend |
129 | find . \( -name '*.o' -o -name '*.pio' \) -follow -exec rm \{\} \; |
128 | find . \( -name '*.o' -o -name '*.pio' \) -follow -exec rm \{\} \; |
130 | 129 | ||
131 | depend: kerninc |
130 | depend: kerninc |
132 | -makedepend -f - -- $(DEPEND_DEFS) $(CFLAGS) -- $(ARCH_SOURCES) $(GENERIC_SOURCES) > Makefile.depend 2> /dev/null |
131 | -makedepend -f - -- $(DEPEND_DEFS) $(CFLAGS) -- $(ARCH_SOURCES) $(GENERIC_SOURCES) > Makefile.depend 2> /dev/null |
133 | -makedepend $(DEFS) $(PIC_CFLAGS) -o.pio -f - $(ARCH_SOURCES) $(GENERIC_SOURCES) >> Makefile.depend 2> /dev/null |
132 | -makedepend $(DEFS) $(PIC_CFLAGS) -o.pio -f - $(ARCH_SOURCES) $(GENERIC_SOURCES) >> Makefile.depend 2> /dev/null |
134 | 133 | ||
135 | libc.a: depend $(OBJECTS) |
134 | libc.a: depend $(OBJECTS) |
136 | $(AR) rc $@ $(LIBS) $(OBJECTS) |
135 | $(AR) rc $@ $(LIBS) $(OBJECTS) |
137 | 136 | ||
138 | libc.pic.a: depend $(PIC_OBJECTS) |
137 | libc.pic.a: depend $(PIC_OBJECTS) |
139 | $(AR) rc $@ $(LIBS) $(PIC_OBJECTS) |
138 | $(AR) rc $@ $(LIBS) $(PIC_OBJECTS) |
140 | 139 | ||
141 | arch/$(UARCH)/_link.ld: arch/$(UARCH)/_link.ld.in |
140 | arch/$(UARCH)/_link.ld: arch/$(UARCH)/_link.ld.in |
142 | $(CC) $(DEFS) $(CFLAGS) -DLIBC_PREFIX=$(LIBC_PREFIX) -E -x c $< | grep -v "^\#" > $@ |
141 | $(CC) $(DEFS) $(CFLAGS) -DLIBC_PREFIX=$(LIBC_PREFIX) -E -x c $< | grep -v "^\#" > $@ |
143 | 142 | ||
144 | %.o: %.S |
143 | %.o: %.S |
145 | $(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@ |
144 | $(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@ |
146 | 145 | ||
147 | %.o: %.s |
146 | %.o: %.s |
148 | $(AS) $(AFLAGS) $< -o $@ |
147 | $(AS) $(AFLAGS) $< -o $@ |
149 | 148 | ||
150 | %.o: %.c |
149 | %.o: %.c |
151 | $(CC) $(DEFS) $(CFLAGS) -c $< -o $@ |
150 | $(CC) $(DEFS) $(CFLAGS) -c $< -o $@ |
152 | 151 | ||
153 | %.pio: %.S |
152 | %.pio: %.S |
154 | $(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@ |
153 | $(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@ |
155 | 154 | ||
156 | %.pio: %.s |
155 | %.pio: %.s |
157 | $(AS) $(AFLAGS) $< -o $@ |
156 | $(AS) $(AFLAGS) $< -o $@ |
158 | 157 | ||
159 | %.pio: %.c |
158 | %.pio: %.c |
160 | $(CC) $(DEFS) $(PIC_CFLAGS) -c $< -o $@ |
159 | $(CC) $(DEFS) $(PIC_CFLAGS) -c $< -o $@ |
161 | 160 |