Rev 4373 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
491 | decky | 1 | # |
2071 | jermar | 2 | # Copyright (c) 2005 Martin Decky |
2955 | svoboda | 3 | # Copyright (c) 2008 Jiri Svoboda |
491 | decky | 4 | # All rights reserved. |
5 | # |
||
6 | # Redistribution and use in source and binary forms, with or without |
||
7 | # modification, are permitted provided that the following conditions |
||
8 | # are met: |
||
9 | # |
||
10 | # - Redistributions of source code must retain the above copyright |
||
11 | # notice, this list of conditions and the following disclaimer. |
||
12 | # - Redistributions in binary form must reproduce the above copyright |
||
13 | # notice, this list of conditions and the following disclaimer in the |
||
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 |
||
16 | # derived from this software without specific prior written permission. |
||
17 | # |
||
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 |
||
20 | # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
||
21 | # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
||
22 | # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
||
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 |
||
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 |
||
27 | # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||
28 | # |
||
447 | decky | 29 | |
491 | decky | 30 | ## Common compiler flags |
31 | # |
||
447 | decky | 32 | |
2528 | jermar | 33 | LIBC_PREFIX = $(shell pwd) |
1073 | cejka | 34 | SOFTINT_PREFIX = ../softint |
447 | decky | 35 | |
4691 | svoboda | 36 | |
502 | decky | 37 | ## Setup toolchain |
491 | decky | 38 | # |
447 | decky | 39 | |
502 | decky | 40 | include $(LIBC_PREFIX)/Makefile.toolchain |
4354 | svoboda | 41 | -include rtld/arch/$(UARCH)/Makefile.inc |
447 | decky | 42 | |
4354 | svoboda | 43 | CFLAGS += -Irtld/include -I../../srv/loader/include -D__32_BITS__ |
3564 | svoboda | 44 | PIC_CFLAGS := $(CFLAGS) -fPIC -D__IN_SHARED_LIBC__ |
1451 | cejka | 45 | |
491 | decky | 46 | ## Sources |
47 | # |
||
48 | |||
49 | GENERIC_SOURCES = \ |
||
504 | decky | 50 | generic/libc.c \ |
1180 | jermar | 51 | generic/ddi.c \ |
1237 | jermar | 52 | generic/as.c \ |
1308 | jermar | 53 | generic/cap.c \ |
4691 | svoboda | 54 | generic/devmap.c \ |
4347 | svoboda | 55 | generic/event.c \ |
4691 | svoboda | 56 | generic/errno.c \ |
4337 | svoboda | 57 | generic/mem.c \ |
999 | palkovsky | 58 | generic/string.c \ |
2586 | jermar | 59 | generic/fibril.c \ |
4691 | svoboda | 60 | generic/fibril_sync.c \ |
3171 | svoboda | 61 | generic/pcb.c \ |
3400 | svoboda | 62 | generic/smc.c \ |
1065 | jermar | 63 | generic/thread.c \ |
2586 | jermar | 64 | generic/tls.c \ |
1175 | jermar | 65 | generic/task.c \ |
1111 | jermar | 66 | generic/futex.c \ |
3403 | svoboda | 67 | generic/io/asprintf.c \ |
974 | cejka | 68 | generic/io/io.c \ |
1234 | cejka | 69 | generic/io/printf.c \ |
4691 | svoboda | 70 | generic/io/klog.c \ |
1234 | cejka | 71 | generic/io/snprintf.c \ |
72 | generic/io/vprintf.c \ |
||
73 | generic/io/vsnprintf.c \ |
||
74 | generic/io/printf_core.c \ |
||
4691 | svoboda | 75 | generic/io/console.c \ |
76 | generic/malloc.c \ |
||
1351 | palkovsky | 77 | generic/sysinfo.c \ |
1392 | palkovsky | 78 | generic/ipc.c \ |
79 | generic/async.c \ |
||
3686 | svoboda | 80 | generic/dlfcn.c \ |
3474 | svoboda | 81 | generic/loader.c \ |
3403 | svoboda | 82 | generic/getopt.c \ |
4691 | svoboda | 83 | generic/adt/list.o \ |
84 | generic/adt/hash_table.o \ |
||
1472 | palkovsky | 85 | generic/time.c \ |
86 | generic/err.c \ |
||
1505 | palkovsky | 87 | generic/stdlib.c \ |
2671 | jermar | 88 | generic/mman.c \ |
3448 | svoboda | 89 | generic/udebug.c \ |
2753 | jermar | 90 | generic/vfs/vfs.c \ |
4354 | svoboda | 91 | generic/vfs/canonify.c \ |
92 | rtld/rtld.c \ |
||
93 | rtld/elf_load.c \ |
||
94 | rtld/dynamic.c \ |
||
95 | rtld/module.c \ |
||
96 | rtld/symbol.c |
||
491 | decky | 97 | |
4354 | svoboda | 98 | |
805 | palkovsky | 99 | ARCH_SOURCES += \ |
4342 | svoboda | 100 | arch/$(UARCH)/src/entry.s \ |
101 | arch/$(UARCH)/src/thread_entry.s |
||
491 | decky | 102 | |
103 | GENERIC_OBJECTS := $(addsuffix .o,$(basename $(GENERIC_SOURCES))) |
||
104 | ARCH_OBJECTS := $(addsuffix .o,$(basename $(ARCH_SOURCES))) |
||
4337 | svoboda | 105 | OBJECTS := $(GENERIC_OBJECTS) $(ARCH_OBJECTS) |
106 | PIC_OBJECTS := $(addsuffix .pio,$(basename $(OBJECTS))) |
||
491 | decky | 107 | |
4373 | svoboda | 108 | OUTPUT := libc.a |
109 | |||
110 | ifeq ($(CONFIG_BUILD_SHARED_LIBC), y) |
||
111 | OUTPUT += libc.pic.a |
||
112 | endif |
||
113 | |||
954 | palkovsky | 114 | .PHONY: all clean depend kerninc |
491 | decky | 115 | |
4373 | svoboda | 116 | all: kerninc $(OUTPUT) arch/$(UARCH)/_link.ld |
491 | decky | 117 | |
954 | palkovsky | 118 | kerninc: |
2479 | jermar | 119 | ln -sfn ../../../../kernel/generic/include include/kernel |
1015 | decky | 120 | ln -sfn kernel/arch include/arch |
4342 | svoboda | 121 | ln -sfn ../arch/$(UARCH)/include include/libarch |
4354 | svoboda | 122 | ln -sfn ../arch/$(UARCH)/include rtld/include/arch |
954 | palkovsky | 123 | |
491 | decky | 124 | -include Makefile.depend |
125 | |||
447 | decky | 126 | clean: |
4354 | svoboda | 127 | -rm -f include/kernel include/arch include/libarch rtld/include/arch libc.a libc.pic.a arch/$(UARCH)/_link.ld Makefile.depend |
2955 | svoboda | 128 | find . \( -name '*.o' -o -name '*.pio' \) -follow -exec rm \{\} \; |
447 | decky | 129 | |
1113 | palkovsky | 130 | depend: kerninc |
4342 | svoboda | 131 | -makedepend -f - -- $(DEPEND_DEFS) $(CFLAGS) -- $(ARCH_SOURCES) $(GENERIC_SOURCES) > Makefile.depend 2> /dev/null |
2955 | svoboda | 132 | -makedepend $(DEFS) $(PIC_CFLAGS) -o.pio -f - $(ARCH_SOURCES) $(GENERIC_SOURCES) >> Makefile.depend 2> /dev/null |
447 | decky | 133 | |
2955 | svoboda | 134 | libc.a: depend $(OBJECTS) |
3772 | svoboda | 135 | $(AR) rc $@ $(LIBS) $(OBJECTS) |
447 | decky | 136 | |
2955 | svoboda | 137 | libc.pic.a: depend $(PIC_OBJECTS) |
138 | $(AR) rc $@ $(LIBS) $(PIC_OBJECTS) |
||
139 | |||
4342 | svoboda | 140 | arch/$(UARCH)/_link.ld: arch/$(UARCH)/_link.ld.in |
2528 | jermar | 141 | $(CC) $(DEFS) $(CFLAGS) -DLIBC_PREFIX=$(LIBC_PREFIX) -E -x c $< | grep -v "^\#" > $@ |
502 | decky | 142 | |
491 | decky | 143 | %.o: %.S |
144 | $(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@ |
||
145 | |||
447 | decky | 146 | %.o: %.s |
491 | decky | 147 | $(AS) $(AFLAGS) $< -o $@ |
447 | decky | 148 | |
149 | %.o: %.c |
||
491 | decky | 150 | $(CC) $(DEFS) $(CFLAGS) -c $< -o $@ |
2955 | svoboda | 151 | |
152 | %.pio: %.S |
||
153 | $(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@ |
||
154 | |||
155 | %.pio: %.s |
||
156 | $(AS) $(AFLAGS) $< -o $@ |
||
157 | |||
158 | %.pio: %.c |
||
159 | $(CC) $(DEFS) $(PIC_CFLAGS) -c $< -o $@ |