Rev 1273 | Rev 1287 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 452 | decky | 1 | # |
| 2 | # Copyright (C) 2005 Martin Decky |
||
| 3 | # All rights reserved. |
||
| 4 | # |
||
| 5 | # Redistribution and use in source and binary forms, with or without |
||
| 6 | # modification, are permitted provided that the following conditions |
||
| 7 | # are met: |
||
| 8 | # |
||
| 9 | # - Redistributions of source code must retain the above copyright |
||
| 10 | # notice, this list of conditions and the following disclaimer. |
||
| 11 | # - Redistributions in binary form must reproduce the above copyright |
||
| 12 | # notice, this list of conditions and the following disclaimer in the |
||
| 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 |
||
| 15 | # derived from this software without specific prior written permission. |
||
| 16 | # |
||
| 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 |
||
| 19 | # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
||
| 20 | # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
||
| 21 | # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
||
| 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 |
||
| 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 |
||
| 26 | # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||
| 27 | # |
||
| 28 | |||
| 29 | ## Kernel release |
||
| 30 | # |
||
| 31 | |||
| 32 | VERSION = 0 |
||
| 33 | PATCHLEVEL = 1 |
||
| 34 | SUBLEVEL = 0 |
||
| 35 | EXTRAVERSION = |
||
| 36 | NAME = Dawn |
||
| 37 | RELEASE = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION) |
||
| 38 | |||
| 550 | palkovsky | 39 | ## Include configuration |
| 452 | decky | 40 | # |
| 41 | |||
| 558 | palkovsky | 42 | -include Makefile.config |
| 452 | decky | 43 | |
| 44 | ## Common compiler flags |
||
| 45 | # |
||
| 46 | |||
| 955 | palkovsky | 47 | DEFS = -D$(ARCH) -DARCH=\"$(ARCH)\" -DRELEASE=\"$(RELEASE)\" "-DNAME=\"$(NAME)\"" -DKERNEL |
| 659 | jermar | 48 | CFLAGS = -fno-builtin -fomit-frame-pointer -Wall -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O3 -nostdlib -nostdinc -Igeneric/include/ |
| 452 | decky | 49 | LFLAGS = -M |
| 462 | decky | 50 | AFLAGS = |
| 452 | decky | 51 | |
| 561 | decky | 52 | ifdef REVISION |
| 53 | DEFS += "-DREVISION=\"$(REVISION)\"" |
||
| 462 | decky | 54 | endif |
| 55 | |||
| 561 | decky | 56 | ifdef TIMESTAMP |
| 57 | DEFS += "-DTIMESTAMP=\"$(TIMESTAMP)\"" |
||
| 58 | endif |
||
| 59 | |||
| 452 | decky | 60 | ## Setup kernel configuration |
| 61 | # |
||
| 62 | |||
| 558 | palkovsky | 63 | -include arch/$(ARCH)/Makefile.inc |
| 64 | -include genarch/Makefile.inc |
||
| 1 | jermar | 65 | |
| 471 | decky | 66 | ifeq ($(CONFIG_DEBUG),y) |
| 67 | DEFS += -DCONFIG_DEBUG |
||
| 452 | decky | 68 | endif |
| 69 | ifeq ($(CONFIG_DEBUG_SPINLOCK),y) |
||
| 458 | decky | 70 | DEFS += -DCONFIG_DEBUG_SPINLOCK |
| 452 | decky | 71 | endif |
| 1072 | palkovsky | 72 | ifeq ($(CONFIG_DEBUG_AS_WATCHPOINT),y) |
| 73 | DEFS += -DCONFIG_DEBUG_AS_WATCHPOINT |
||
| 74 | endif |
||
| 568 | palkovsky | 75 | ifeq ($(CONFIG_FPU_LAZY),y) |
| 76 | DEFS += -DCONFIG_FPU_LAZY |
||
| 77 | endif |
||
| 1094 | palkovsky | 78 | ifeq ($(CONFIG_DEBUG_ALLREGS),y) |
| 79 | DEFS += -DCONFIG_DEBUG_ALLREGS |
||
| 80 | endif |
||
| 1210 | vana | 81 | ifeq ($(CONFIG_VHPT),y) |
| 82 | DEFS += -DCONFIG_VHPT |
||
| 83 | endif |
||
| 452 | decky | 84 | |
| 85 | ## Toolchain configuration |
||
| 86 | # |
||
| 87 | |||
| 88 | ifeq ($(COMPILER),native) |
||
| 89 | CC = gcc |
||
| 90 | AS = as |
||
| 91 | LD = ld |
||
| 92 | OBJCOPY = objcopy |
||
| 93 | OBJDUMP = objdump |
||
| 94 | else |
||
| 95 | CC = $(TOOLCHAIN_DIR)/$(TARGET)-gcc |
||
| 96 | AS = $(TOOLCHAIN_DIR)/$(TARGET)-as |
||
| 97 | LD = $(TOOLCHAIN_DIR)/$(TARGET)-ld |
||
| 98 | OBJCOPY = $(TOOLCHAIN_DIR)/$(TARGET)-objcopy |
||
| 99 | OBJDUMP = $(TOOLCHAIN_DIR)/$(TARGET)-objdump |
||
| 100 | endif |
||
| 101 | |||
| 102 | ## Generic kernel sources |
||
| 103 | # |
||
| 104 | |||
| 105 | GENERIC_SOURCES = \ |
||
| 1200 | jermar | 106 | generic/src/adt/bitmap.c \ |
| 1101 | jermar | 107 | generic/src/adt/btree.c \ |
| 790 | jermar | 108 | generic/src/adt/hash_table.c \ |
| 788 | jermar | 109 | generic/src/adt/list.c \ |
| 510 | jermar | 110 | generic/src/console/chardev.c \ |
| 111 | generic/src/console/console.c \ |
||
| 518 | jermar | 112 | generic/src/console/kconsole.c \ |
| 596 | jermar | 113 | generic/src/console/cmd.c \ |
| 452 | decky | 114 | generic/src/cpu/cpu.c \ |
| 1178 | jermar | 115 | generic/src/ddi/ddi.c \ |
| 575 | palkovsky | 116 | generic/src/interrupt/interrupt.c \ |
| 430 | jermar | 117 | generic/src/main/main.c \ |
| 118 | generic/src/main/kinit.c \ |
||
| 119 | generic/src/main/uinit.c \ |
||
| 673 | jermar | 120 | generic/src/main/version.c \ |
| 430 | jermar | 121 | generic/src/proc/scheduler.c \ |
| 122 | generic/src/proc/thread.c \ |
||
| 123 | generic/src/proc/task.c \ |
||
| 124 | generic/src/proc/the.c \ |
||
| 678 | decky | 125 | generic/src/syscall/syscall.c \ |
| 430 | jermar | 126 | generic/src/mm/buddy.c \ |
| 127 | generic/src/mm/frame.c \ |
||
| 128 | generic/src/mm/page.c \ |
||
| 129 | generic/src/mm/tlb.c \ |
||
| 703 | jermar | 130 | generic/src/mm/as.c \ |
| 759 | palkovsky | 131 | generic/src/mm/slab.c \ |
| 430 | jermar | 132 | generic/src/lib/func.c \ |
| 133 | generic/src/lib/memstr.c \ |
||
| 134 | generic/src/lib/sort.c \ |
||
| 938 | jermar | 135 | generic/src/lib/elf.c \ |
| 1273 | cejka | 136 | generic/src/printf/printf_core.c \ |
| 137 | generic/src/printf/printf.c \ |
||
| 138 | generic/src/printf/sprintf.c \ |
||
| 139 | generic/src/printf/snprintf.c \ |
||
| 140 | generic/src/printf/vprintf.c \ |
||
| 141 | generic/src/printf/vsprintf.c \ |
||
| 142 | generic/src/printf/vsnprintf.c \ |
||
| 430 | jermar | 143 | generic/src/debug/symtab.c \ |
| 144 | generic/src/time/clock.c \ |
||
| 145 | generic/src/time/timeout.c \ |
||
| 146 | generic/src/time/delay.c \ |
||
| 147 | generic/src/preempt/preemption.c \ |
||
| 148 | generic/src/synch/spinlock.c \ |
||
| 149 | generic/src/synch/condvar.c \ |
||
| 150 | generic/src/synch/rwlock.c \ |
||
| 151 | generic/src/synch/mutex.c \ |
||
| 152 | generic/src/synch/semaphore.c \ |
||
| 153 | generic/src/synch/waitq.c \ |
||
| 1109 | jermar | 154 | generic/src/synch/futex.c \ |
| 955 | palkovsky | 155 | generic/src/smp/ipi.c \ |
| 965 | palkovsky | 156 | generic/src/ipc/ipc.c \ |
| 1072 | palkovsky | 157 | generic/src/ipc/sysipc.c \ |
| 1174 | jermar | 158 | generic/src/ipc/ipcrsc.c \ |
| 1281 | palkovsky | 159 | generic/src/ipc/irq.c \ |
| 1174 | jermar | 160 | generic/src/security/cap.c |
| 1 | jermar | 161 | |
| 459 | decky | 162 | ## Test sources |
| 163 | # |
||
| 164 | |||
| 165 | ifneq ($(CONFIG_TEST),) |
||
| 166 | DEFS += -DCONFIG_TEST |
||
| 167 | GENERIC_SOURCES += test/$(CONFIG_TEST)/test.c |
||
| 168 | endif |
||
| 169 | |||
| 452 | decky | 170 | GENERIC_OBJECTS := $(addsuffix .o,$(basename $(GENERIC_SOURCES))) |
| 171 | ARCH_OBJECTS := $(addsuffix .o,$(basename $(ARCH_SOURCES))) |
||
| 172 | GENARCH_OBJECTS := $(addsuffix .o,$(basename $(GENARCH_SOURCES))) |
||
| 326 | palkovsky | 173 | |
| 1017 | decky | 174 | .PHONY: all build config distclean clean archlinks depend disasm |
| 1 | jermar | 175 | |
| 558 | palkovsky | 176 | all: |
| 1012 | palkovsky | 177 | tools/config.py default $(NARCH) |
| 178 | ifdef NARCH |
||
| 179 | ifneq ($(ARCH), $(NARCH)) |
||
| 180 | $(MAKE) -C . clean |
||
| 181 | endif |
||
| 182 | endif |
||
| 561 | decky | 183 | $(MAKE) -C . build |
| 34 | jermar | 184 | |
| 1017 | decky | 185 | build: kernel.bin disasm |
| 558 | palkovsky | 186 | |
| 187 | config: |
||
| 580 | palkovsky | 188 | -rm Makefile.depend |
| 558 | palkovsky | 189 | tools/config.py |
| 190 | |||
| 452 | decky | 191 | -include Makefile.depend |
| 1 | jermar | 192 | |
| 558 | palkovsky | 193 | distclean: clean |
| 194 | -rm Makefile.config |
||
| 195 | |||
| 452 | decky | 196 | clean: |
| 576 | palkovsky | 197 | -rm -f kernel.bin kernel.raw kernel.map kernel.map.pre kernel.objdump kernel.disasm generic/src/debug/real_map.bin Makefile.depend* generic/include/arch generic/include/genarch arch/$(ARCH)/_link.ld |
| 558 | palkovsky | 198 | find generic/src/ arch/*/src/ genarch/src/ test/ -name '*.o' -follow -exec rm \{\} \; |
| 199 | for arch in arch/*; do \ |
||
| 200 | [ -e $$arch/_link.ld ] && rm $$arch/_link.ld 2>/dev/null;\ |
||
| 201 | done;exit 0 |
||
| 1 | jermar | 202 | |
| 558 | palkovsky | 203 | archlinks: |
| 452 | decky | 204 | ln -sfn ../../arch/$(ARCH)/include/ generic/include/arch |
| 205 | ln -sfn ../../genarch/include/ generic/include/genarch |
||
| 1 | jermar | 206 | |
| 577 | palkovsky | 207 | depend: archlinks |
| 651 | decky | 208 | -makedepend $(DEFS) $(CFLAGS) -f - $(ARCH_SOURCES) $(GENARCH_SOURCES) $(GENERIC_SOURCES) > Makefile.depend 2> /dev/null |
| 576 | palkovsky | 209 | |
| 452 | decky | 210 | arch/$(ARCH)/_link.ld: arch/$(ARCH)/_link.ld.in |
| 967 | palkovsky | 211 | $(CC) $(DEFS) $(CFLAGS) -D__ASM__ -E -x c $< | grep -v "^\#" > $@ |
| 1 | jermar | 212 | |
| 452 | decky | 213 | generic/src/debug/real_map.bin: depend arch/$(ARCH)/_link.ld $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) |
| 430 | jermar | 214 | $(OBJCOPY) -I binary -O $(BFD_NAME) -B $(BFD_ARCH) --prefix-sections=symtab Makefile generic/src/debug/empty_map.o |
| 452 | decky | 215 | $(LD) -T arch/$(ARCH)/_link.ld $(LFLAGS) $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) generic/src/debug/empty_map.o -o $@ -Map kernel.map.pre |
| 216 | $(OBJDUMP) -t $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) > kernel.objdump |
||
| 430 | jermar | 217 | tools/genmap.py kernel.map.pre kernel.objdump generic/src/debug/real_map.bin |
| 602 | palkovsky | 218 | # Do it once again, this time to get correct even the symbols |
| 219 | # on architectures, that have bss after symtab |
||
| 220 | $(OBJCOPY) -I binary -O $(BFD_NAME) -B $(BFD_ARCH) --prefix-sections=symtab generic/src/debug/real_map.bin generic/src/debug/sizeok_map.o |
||
| 221 | $(LD) -T arch/$(ARCH)/_link.ld $(LFLAGS) $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) generic/src/debug/sizeok_map.o -o $@ -Map kernel.map.pre |
||
| 222 | $(OBJDUMP) -t $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) > kernel.objdump |
||
| 223 | tools/genmap.py kernel.map.pre kernel.objdump generic/src/debug/real_map.bin |
||
| 293 | palkovsky | 224 | |
| 430 | jermar | 225 | generic/src/debug/real_map.o: generic/src/debug/real_map.bin |
| 293 | palkovsky | 226 | $(OBJCOPY) -I binary -O $(BFD_NAME) -B $(BFD_ARCH) --prefix-sections=symtab $< $@ |
| 227 | |||
| 461 | decky | 228 | kernel.raw: depend arch/$(ARCH)/_link.ld $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) generic/src/debug/real_map.o |
| 452 | decky | 229 | $(LD) -T arch/$(ARCH)/_link.ld $(LFLAGS) $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) generic/src/debug/real_map.o -o $@ -Map kernel.map |
| 293 | palkovsky | 230 | |
| 461 | decky | 231 | kernel.bin: kernel.raw |
| 232 | $(OBJCOPY) -O $(BFD) kernel.raw kernel.bin |
||
| 233 | |||
| 472 | jermar | 234 | disasm: kernel.raw |
| 235 | $(OBJDUMP) -d kernel.raw > kernel.disasm |
||
| 236 | |||
| 314 | palkovsky | 237 | %.o: %.S |
| 1161 | decky | 238 | $(CC) $(DEFS) $(CFLAGS) -D__ASM__ -c $< -o $@ |
| 1 | jermar | 239 | |
| 240 | %.o: %.s |
||
| 455 | decky | 241 | $(AS) $(AFLAGS) $< -o $@ |
| 1 | jermar | 242 | |
| 243 | %.o: %.c |
||
| 455 | decky | 244 | $(CC) $(DEFS) $(CFLAGS) -c $< -o $@ |