Rev 1017 | Rev 1072 | 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 |
| 568 | palkovsky | 72 | ifeq ($(CONFIG_FPU_LAZY),y) |
| 73 | DEFS += -DCONFIG_FPU_LAZY |
||
| 74 | endif |
||
| 452 | decky | 75 | |
| 76 | ## Toolchain configuration |
||
| 77 | # |
||
| 78 | |||
| 79 | ifeq ($(COMPILER),native) |
||
| 80 | CC = gcc |
||
| 81 | AS = as |
||
| 82 | LD = ld |
||
| 83 | OBJCOPY = objcopy |
||
| 84 | OBJDUMP = objdump |
||
| 85 | else |
||
| 86 | CC = $(TOOLCHAIN_DIR)/$(TARGET)-gcc |
||
| 87 | AS = $(TOOLCHAIN_DIR)/$(TARGET)-as |
||
| 88 | LD = $(TOOLCHAIN_DIR)/$(TARGET)-ld |
||
| 89 | OBJCOPY = $(TOOLCHAIN_DIR)/$(TARGET)-objcopy |
||
| 90 | OBJDUMP = $(TOOLCHAIN_DIR)/$(TARGET)-objdump |
||
| 91 | endif |
||
| 92 | |||
| 93 | ## Generic kernel sources |
||
| 94 | # |
||
| 95 | |||
| 96 | GENERIC_SOURCES = \ |
||
| 790 | jermar | 97 | generic/src/adt/hash_table.c \ |
| 788 | jermar | 98 | generic/src/adt/list.c \ |
| 510 | jermar | 99 | generic/src/console/chardev.c \ |
| 100 | generic/src/console/console.c \ |
||
| 518 | jermar | 101 | generic/src/console/kconsole.c \ |
| 596 | jermar | 102 | generic/src/console/cmd.c \ |
| 452 | decky | 103 | generic/src/cpu/cpu.c \ |
| 575 | palkovsky | 104 | generic/src/interrupt/interrupt.c \ |
| 430 | jermar | 105 | generic/src/main/main.c \ |
| 106 | generic/src/main/kinit.c \ |
||
| 107 | generic/src/main/uinit.c \ |
||
| 673 | jermar | 108 | generic/src/main/version.c \ |
| 430 | jermar | 109 | generic/src/proc/scheduler.c \ |
| 110 | generic/src/proc/thread.c \ |
||
| 111 | generic/src/proc/task.c \ |
||
| 112 | generic/src/proc/the.c \ |
||
| 678 | decky | 113 | generic/src/syscall/syscall.c \ |
| 430 | jermar | 114 | generic/src/mm/buddy.c \ |
| 115 | generic/src/mm/frame.c \ |
||
| 116 | generic/src/mm/page.c \ |
||
| 117 | generic/src/mm/tlb.c \ |
||
| 703 | jermar | 118 | generic/src/mm/as.c \ |
| 759 | palkovsky | 119 | generic/src/mm/slab.c \ |
| 430 | jermar | 120 | generic/src/lib/func.c \ |
| 121 | generic/src/lib/memstr.c \ |
||
| 122 | generic/src/lib/sort.c \ |
||
| 938 | jermar | 123 | generic/src/lib/elf.c \ |
| 430 | jermar | 124 | generic/src/debug/print.c \ |
| 125 | generic/src/debug/symtab.c \ |
||
| 126 | generic/src/time/clock.c \ |
||
| 127 | generic/src/time/timeout.c \ |
||
| 128 | generic/src/time/delay.c \ |
||
| 129 | generic/src/preempt/preemption.c \ |
||
| 130 | generic/src/synch/spinlock.c \ |
||
| 131 | generic/src/synch/condvar.c \ |
||
| 132 | generic/src/synch/rwlock.c \ |
||
| 133 | generic/src/synch/mutex.c \ |
||
| 134 | generic/src/synch/semaphore.c \ |
||
| 135 | generic/src/synch/waitq.c \ |
||
| 955 | palkovsky | 136 | generic/src/smp/ipi.c \ |
| 965 | palkovsky | 137 | generic/src/ipc/ipc.c \ |
| 1027 | palkovsky | 138 | generic/src/ipc/sysipc.c |
| 1 | jermar | 139 | |
| 459 | decky | 140 | ## Test sources |
| 141 | # |
||
| 142 | |||
| 143 | ifneq ($(CONFIG_TEST),) |
||
| 144 | DEFS += -DCONFIG_TEST |
||
| 145 | GENERIC_SOURCES += test/$(CONFIG_TEST)/test.c |
||
| 146 | endif |
||
| 147 | |||
| 452 | decky | 148 | GENERIC_OBJECTS := $(addsuffix .o,$(basename $(GENERIC_SOURCES))) |
| 149 | ARCH_OBJECTS := $(addsuffix .o,$(basename $(ARCH_SOURCES))) |
||
| 150 | GENARCH_OBJECTS := $(addsuffix .o,$(basename $(GENARCH_SOURCES))) |
||
| 326 | palkovsky | 151 | |
| 1017 | decky | 152 | .PHONY: all build config distclean clean archlinks depend disasm |
| 1 | jermar | 153 | |
| 558 | palkovsky | 154 | all: |
| 1012 | palkovsky | 155 | tools/config.py default $(NARCH) |
| 156 | ifdef NARCH |
||
| 157 | ifneq ($(ARCH), $(NARCH)) |
||
| 158 | $(MAKE) -C . clean |
||
| 159 | endif |
||
| 160 | endif |
||
| 561 | decky | 161 | $(MAKE) -C . build |
| 34 | jermar | 162 | |
| 1017 | decky | 163 | build: kernel.bin disasm |
| 558 | palkovsky | 164 | |
| 165 | config: |
||
| 580 | palkovsky | 166 | -rm Makefile.depend |
| 558 | palkovsky | 167 | tools/config.py |
| 168 | |||
| 452 | decky | 169 | -include Makefile.depend |
| 1 | jermar | 170 | |
| 558 | palkovsky | 171 | distclean: clean |
| 172 | -rm Makefile.config |
||
| 173 | |||
| 452 | decky | 174 | clean: |
| 576 | palkovsky | 175 | -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 | 176 | find generic/src/ arch/*/src/ genarch/src/ test/ -name '*.o' -follow -exec rm \{\} \; |
| 177 | for arch in arch/*; do \ |
||
| 178 | [ -e $$arch/_link.ld ] && rm $$arch/_link.ld 2>/dev/null;\ |
||
| 179 | done;exit 0 |
||
| 1 | jermar | 180 | |
| 558 | palkovsky | 181 | archlinks: |
| 452 | decky | 182 | ln -sfn ../../arch/$(ARCH)/include/ generic/include/arch |
| 183 | ln -sfn ../../genarch/include/ generic/include/genarch |
||
| 1 | jermar | 184 | |
| 577 | palkovsky | 185 | depend: archlinks |
| 651 | decky | 186 | -makedepend $(DEFS) $(CFLAGS) -f - $(ARCH_SOURCES) $(GENARCH_SOURCES) $(GENERIC_SOURCES) > Makefile.depend 2> /dev/null |
| 576 | palkovsky | 187 | |
| 452 | decky | 188 | arch/$(ARCH)/_link.ld: arch/$(ARCH)/_link.ld.in |
| 967 | palkovsky | 189 | $(CC) $(DEFS) $(CFLAGS) -D__ASM__ -E -x c $< | grep -v "^\#" > $@ |
| 1 | jermar | 190 | |
| 452 | decky | 191 | generic/src/debug/real_map.bin: depend arch/$(ARCH)/_link.ld $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) |
| 430 | jermar | 192 | $(OBJCOPY) -I binary -O $(BFD_NAME) -B $(BFD_ARCH) --prefix-sections=symtab Makefile generic/src/debug/empty_map.o |
| 452 | decky | 193 | $(LD) -T arch/$(ARCH)/_link.ld $(LFLAGS) $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) generic/src/debug/empty_map.o -o $@ -Map kernel.map.pre |
| 194 | $(OBJDUMP) -t $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) > kernel.objdump |
||
| 430 | jermar | 195 | tools/genmap.py kernel.map.pre kernel.objdump generic/src/debug/real_map.bin |
| 602 | palkovsky | 196 | # Do it once again, this time to get correct even the symbols |
| 197 | # on architectures, that have bss after symtab |
||
| 198 | $(OBJCOPY) -I binary -O $(BFD_NAME) -B $(BFD_ARCH) --prefix-sections=symtab generic/src/debug/real_map.bin generic/src/debug/sizeok_map.o |
||
| 199 | $(LD) -T arch/$(ARCH)/_link.ld $(LFLAGS) $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) generic/src/debug/sizeok_map.o -o $@ -Map kernel.map.pre |
||
| 200 | $(OBJDUMP) -t $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) > kernel.objdump |
||
| 201 | tools/genmap.py kernel.map.pre kernel.objdump generic/src/debug/real_map.bin |
||
| 293 | palkovsky | 202 | |
| 430 | jermar | 203 | generic/src/debug/real_map.o: generic/src/debug/real_map.bin |
| 293 | palkovsky | 204 | $(OBJCOPY) -I binary -O $(BFD_NAME) -B $(BFD_ARCH) --prefix-sections=symtab $< $@ |
| 205 | |||
| 461 | decky | 206 | kernel.raw: depend arch/$(ARCH)/_link.ld $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) generic/src/debug/real_map.o |
| 452 | decky | 207 | $(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 | 208 | |
| 461 | decky | 209 | kernel.bin: kernel.raw |
| 210 | $(OBJCOPY) -O $(BFD) kernel.raw kernel.bin |
||
| 211 | |||
| 472 | jermar | 212 | disasm: kernel.raw |
| 213 | $(OBJDUMP) -d kernel.raw > kernel.disasm |
||
| 214 | |||
| 314 | palkovsky | 215 | %.o: %.S |
| 472 | jermar | 216 | $(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@ |
| 1 | jermar | 217 | |
| 218 | %.o: %.s |
||
| 455 | decky | 219 | $(AS) $(AFLAGS) $< -o $@ |
| 1 | jermar | 220 | |
| 221 | %.o: %.c |
||
| 455 | decky | 222 | $(CC) $(DEFS) $(CFLAGS) -c $< -o $@ |