Rev 2955 | Rev 3400 | Go to most recent revision | 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 |
2479 | jermar | 35 | CONSOLE_PREFIX = ../../srv/console |
447 | decky | 36 | |
502 | decky | 37 | ## Setup toolchain |
491 | decky | 38 | # |
447 | decky | 39 | |
502 | decky | 40 | include $(LIBC_PREFIX)/Makefile.toolchain |
447 | decky | 41 | |
1451 | cejka | 42 | CFLAGS += -I$(CONSOLE_PREFIX) |
2955 | svoboda | 43 | PIC_CFLAGS := $(CFLAGS) -fPIC -D__PIC__ |
1451 | cejka | 44 | |
491 | decky | 45 | ## Sources |
46 | # |
||
47 | |||
1073 | cejka | 48 | |
491 | decky | 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 \ |
999 | palkovsky | 54 | generic/string.c \ |
2586 | jermar | 55 | generic/fibril.c \ |
3171 | svoboda | 56 | generic/pcb.c \ |
1065 | jermar | 57 | generic/thread.c \ |
2586 | jermar | 58 | generic/tls.c \ |
1175 | jermar | 59 | generic/task.c \ |
1111 | jermar | 60 | generic/futex.c \ |
974 | cejka | 61 | generic/io/io.c \ |
1234 | cejka | 62 | generic/io/printf.c \ |
1363 | vana | 63 | generic/io/stream.c \ |
1234 | cejka | 64 | generic/io/sprintf.c \ |
65 | generic/io/snprintf.c \ |
||
66 | generic/io/vprintf.c \ |
||
67 | generic/io/vsprintf.c \ |
||
68 | generic/io/vsnprintf.c \ |
||
69 | generic/io/printf_core.c \ |
||
1113 | palkovsky | 70 | malloc/malloc.c \ |
1351 | palkovsky | 71 | generic/sysinfo.c \ |
1392 | palkovsky | 72 | generic/ipc.c \ |
73 | generic/async.c \ |
||
74 | generic/libadt/list.o \ |
||
1435 | palkovsky | 75 | generic/libadt/hash_table.o \ |
1472 | palkovsky | 76 | generic/time.c \ |
77 | generic/err.c \ |
||
1505 | palkovsky | 78 | generic/stdlib.c \ |
2671 | jermar | 79 | generic/mman.c \ |
2753 | jermar | 80 | generic/vfs/vfs.c \ |
81 | generic/vfs/canonify.c |
||
491 | decky | 82 | |
805 | palkovsky | 83 | ARCH_SOURCES += \ |
1079 | jermar | 84 | arch/$(ARCH)/src/entry.s \ |
85 | arch/$(ARCH)/src/thread_entry.s |
||
491 | decky | 86 | |
87 | GENERIC_OBJECTS := $(addsuffix .o,$(basename $(GENERIC_SOURCES))) |
||
88 | ARCH_OBJECTS := $(addsuffix .o,$(basename $(ARCH_SOURCES))) |
||
89 | |||
2955 | svoboda | 90 | OBJECTS = $(GENERIC_OBJECTS) $(ARCH_OBJECTS) |
91 | PIC_OBJECTS = $(addsuffix .pio,$(basename $(OBJECTS))) |
||
92 | |||
954 | palkovsky | 93 | .PHONY: all clean depend kerninc |
491 | decky | 94 | |
2955 | svoboda | 95 | all: kerninc libc.a libc.pic.a arch/$(ARCH)/_link.ld |
491 | decky | 96 | |
954 | palkovsky | 97 | kerninc: |
2479 | jermar | 98 | ln -sfn ../../../../kernel/generic/include include/kernel |
1015 | decky | 99 | ln -sfn kernel/arch include/arch |
1113 | palkovsky | 100 | ln -sfn ../arch/$(ARCH)/include include/libarch |
954 | palkovsky | 101 | |
491 | decky | 102 | -include Makefile.depend |
103 | |||
447 | decky | 104 | clean: |
2955 | svoboda | 105 | -rm -f include/kernel include/arch include/libarch libc.a libc.pic.a arch/$(ARCH)/_link.ld Makefile.depend |
106 | find . \( -name '*.o' -o -name '*.pio' \) -follow -exec rm \{\} \; |
||
447 | decky | 107 | |
1113 | palkovsky | 108 | depend: kerninc |
1127 | palkovsky | 109 | -makedepend $(DEFS) $(CFLAGS) -f - $(ARCH_SOURCES) $(GENERIC_SOURCES) > Makefile.depend 2> /dev/null |
2955 | svoboda | 110 | -makedepend $(DEFS) $(PIC_CFLAGS) -o.pio -f - $(ARCH_SOURCES) $(GENERIC_SOURCES) >> Makefile.depend 2> /dev/null |
447 | decky | 111 | |
2955 | svoboda | 112 | libc.a: depend $(OBJECTS) |
113 | $(AR) rc $@ $(LIBS) $(OBJECTS) |
||
447 | decky | 114 | |
2955 | svoboda | 115 | libc.pic.a: depend $(PIC_OBJECTS) |
116 | $(AR) rc $@ $(LIBS) $(PIC_OBJECTS) |
||
117 | |||
795 | palkovsky | 118 | arch/$(ARCH)/_link.ld: arch/$(ARCH)/_link.ld.in |
2528 | jermar | 119 | $(CC) $(DEFS) $(CFLAGS) -DLIBC_PREFIX=$(LIBC_PREFIX) -E -x c $< | grep -v "^\#" > $@ |
502 | decky | 120 | |
491 | decky | 121 | %.o: %.S |
122 | $(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@ |
||
123 | |||
447 | decky | 124 | %.o: %.s |
491 | decky | 125 | $(AS) $(AFLAGS) $< -o $@ |
447 | decky | 126 | |
127 | %.o: %.c |
||
491 | decky | 128 | $(CC) $(DEFS) $(CFLAGS) -c $< -o $@ |
2955 | svoboda | 129 | |
130 | %.pio: %.S |
||
131 | $(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@ |
||
132 | |||
133 | %.pio: %.s |
||
134 | $(AS) $(AFLAGS) $< -o $@ |
||
135 | |||
136 | %.pio: %.c |
||
137 | $(CC) $(DEFS) $(PIC_CFLAGS) -c $< -o $@ |