[e16e036a] | 1 | #
|
---|
[df4ed85] | 2 | # Copyright (c) 2005 Martin Decky
|
---|
[e16e036a] | 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 |
|
---|
[9371c30] | 30 | ## Include configuration
|
---|
[e16e036a] | 31 | #
|
---|
| 32 |
|
---|
[41f7564] | 33 | -include ../version
|
---|
[839470f] | 34 | -include Makefile.config
|
---|
[e16e036a] | 35 |
|
---|
[44bec47] | 36 | INCLUDES = generic/include
|
---|
[eb1c0a3] | 37 | OPTIMIZATION = 3
|
---|
[44bec47] | 38 |
|
---|
[e16e036a] | 39 | ## Common compiler flags
|
---|
| 40 | #
|
---|
| 41 |
|
---|
[52d30c4] | 42 | DEFS = -D$(ARCH) -DARCH=\"$(ARCH)\" -DRELEASE=\"$(RELEASE)\" "-DNAME=\"$(NAME)\"" \
|
---|
| 43 | -DKERNEL
|
---|
| 44 |
|
---|
[44bec47] | 45 | GCC_CFLAGS = -I$(INCLUDES) -O$(OPTIMIZATION) \
|
---|
[18ad03f3] | 46 | -fno-builtin -Wall -Wextra -Wno-unused-parameter -Wmissing-prototypes -Werror \
|
---|
[44bec47] | 47 | -nostdlib -nostdinc
|
---|
| 48 |
|
---|
| 49 | ICC_CFLAGS = -I$(INCLUDES) -O$(OPTIMIZATION) \
|
---|
[18ad03f3] | 50 | -fno-builtin -Wall -Wmissing-prototypes -Werror \
|
---|
[44bec47] | 51 | -nostdlib -nostdinc \
|
---|
| 52 | -wd170
|
---|
[52d30c4] | 53 |
|
---|
[44bec47] | 54 | SUNCC_CFLAGS = -I$(INCLUDES) -xO$(OPTIMIZATION) \
|
---|
[3ee8a075] | 55 | -xnolib -xc99=all -features=extensions \
|
---|
[52d30c4] | 56 | -erroff=E_ZERO_SIZED_STRUCT_UNION
|
---|
[92d349c8] | 57 |
|
---|
[e16e036a] | 58 | LFLAGS = -M
|
---|
[ba22dcb] | 59 | AFLAGS =
|
---|
| 60 |
|
---|
[940cac0] | 61 | ifdef REVISION
|
---|
| 62 | DEFS += "-DREVISION=\"$(REVISION)\""
|
---|
| 63 | endif
|
---|
| 64 |
|
---|
| 65 | ifdef TIMESTAMP
|
---|
| 66 | DEFS += "-DTIMESTAMP=\"$(TIMESTAMP)\""
|
---|
[ba22dcb] | 67 | endif
|
---|
[e16e036a] | 68 |
|
---|
[839470f] | 69 | -include arch/$(ARCH)/Makefile.inc
|
---|
| 70 | -include genarch/Makefile.inc
|
---|
[c9ed176] | 71 |
|
---|
[1314e3b] | 72 | ## The at-sign
|
---|
| 73 | #
|
---|
[bcfd586] | 74 | # The $(ATSIGN) variable holds the ASCII character representing the at-sign
|
---|
[1314e3b] | 75 | # ('@') used in various $(AS) constructs (e.g. @progbits). On architectures that
|
---|
| 76 | # don't use '@' for starting a comment, $(ATSIGN) is merely '@'. However, on
|
---|
| 77 | # those that do use it for starting a comment (e.g. arm32), $(ATSIGN) must be
|
---|
| 78 | # defined as the percentile-sign ('%') in the architecture-dependent
|
---|
| 79 | # Makefile.inc.
|
---|
| 80 | #
|
---|
| 81 | ATSIGN ?= @
|
---|
| 82 |
|
---|
| 83 | ## Cross-platform assembly to start a symtab.data section
|
---|
| 84 | #
|
---|
| 85 | SYMTAB_SECTION=".section symtab.data, \"a\", $(ATSIGN)progbits;"
|
---|
| 86 |
|
---|
| 87 | ## Setup kernel configuration
|
---|
| 88 | #
|
---|
[b183865e] | 89 | ifeq ($(CONFIG_DEBUG),y)
|
---|
| 90 | DEFS += -DCONFIG_DEBUG
|
---|
[e16e036a] | 91 | endif
|
---|
[41f7564] | 92 |
|
---|
[558c2bd] | 93 | ifeq ($(CONFIG_EDEBUG),y)
|
---|
| 94 | DEFS += -DCONFIG_EDEBUG
|
---|
| 95 | endif
|
---|
| 96 |
|
---|
[e16e036a] | 97 | ifeq ($(CONFIG_DEBUG_SPINLOCK),y)
|
---|
[5f85c91] | 98 | DEFS += -DCONFIG_DEBUG_SPINLOCK
|
---|
[e16e036a] | 99 | endif
|
---|
[41f7564] | 100 |
|
---|
[4e49572] | 101 | ifeq ($(CONFIG_DEBUG_AS_WATCHPOINT),y)
|
---|
| 102 | DEFS += -DCONFIG_DEBUG_AS_WATCHPOINT
|
---|
| 103 | endif
|
---|
[41f7564] | 104 |
|
---|
[944b15c] | 105 | ifeq ($(CONFIG_FPU_LAZY),y)
|
---|
| 106 | DEFS += -DCONFIG_FPU_LAZY
|
---|
| 107 | endif
|
---|
[41f7564] | 108 |
|
---|
[8d25b44] | 109 | ifeq ($(CONFIG_DEBUG_ALLREGS),y)
|
---|
| 110 | DEFS += -DCONFIG_DEBUG_ALLREGS
|
---|
| 111 | endif
|
---|
[41f7564] | 112 |
|
---|
[68091bd] | 113 | ifeq ($(CONFIG_VHPT),y)
|
---|
| 114 | DEFS += -DCONFIG_VHPT
|
---|
| 115 | endif
|
---|
[41f7564] | 116 |
|
---|
[29b2bbf] | 117 | ifeq ($(CONFIG_TSB),y)
|
---|
| 118 | DEFS += -DCONFIG_TSB
|
---|
| 119 | endif
|
---|
| 120 |
|
---|
[28ecadb] | 121 | ifeq ($(CONFIG_Z8530),y)
|
---|
| 122 | DEFS += -DCONFIG_Z8530
|
---|
| 123 | endif
|
---|
| 124 |
|
---|
| 125 | ifeq ($(CONFIG_NS16550),y)
|
---|
| 126 | DEFS += -DCONFIG_NS16550
|
---|
| 127 | endif
|
---|
| 128 |
|
---|
[92778f2] | 129 | ifeq ($(CONFIG_VIRT_IDX_DCACHE),y)
|
---|
| 130 | DEFS += -DCONFIG_VIRT_IDX_DCACHE
|
---|
[44d0758] | 131 | endif
|
---|
| 132 |
|
---|
[22cf454d] | 133 | ifeq ($(CONFIG_FB),y)
|
---|
[41f7564] | 134 | ifeq ($(ARCH),ia32)
|
---|
| 135 | DEFS += -DCONFIG_VESA_WIDTH=$(CONFIG_VESA_WIDTH)
|
---|
| 136 | DEFS += -DCONFIG_VESA_HEIGHT=$(CONFIG_VESA_HEIGHT)
|
---|
| 137 | DEFS += -DCONFIG_VESA_BPP=$(CONFIG_VESA_BPP)
|
---|
| 138 | endif
|
---|
| 139 |
|
---|
| 140 | ifeq ($(ARCH),amd64)
|
---|
| 141 | DEFS += -DCONFIG_VESA_WIDTH=$(CONFIG_VESA_WIDTH)
|
---|
| 142 | DEFS += -DCONFIG_VESA_HEIGHT=$(CONFIG_VESA_HEIGHT)
|
---|
| 143 | DEFS += -DCONFIG_VESA_BPP=$(CONFIG_VESA_BPP)
|
---|
| 144 | endif
|
---|
| 145 |
|
---|
[19dce27] | 146 | ifeq ($(ARCH),ia32xen)
|
---|
[41f7564] | 147 | DEFS += -DCONFIG_VESA_WIDTH=$(CONFIG_VESA_WIDTH)
|
---|
| 148 | DEFS += -DCONFIG_VESA_HEIGHT=$(CONFIG_VESA_HEIGHT)
|
---|
| 149 | DEFS += -DCONFIG_VESA_BPP=$(CONFIG_VESA_BPP)
|
---|
| 150 | endif
|
---|
[ab5f8bf] | 151 | endif
|
---|
[e16e036a] | 152 |
|
---|
[f5b4fb9] | 153 | ## Simple detection for the type of the host system
|
---|
| 154 | #
|
---|
| 155 | HOST = $(shell uname)
|
---|
| 156 |
|
---|
| 157 | ## On Solaris, some utilities have slightly different names
|
---|
| 158 | #
|
---|
| 159 | ifeq ($(HOST),SunOS)
|
---|
| 160 | BINUTILS_PREFIX = "g"
|
---|
| 161 | else
|
---|
| 162 | BINUTILS_PREFIX = ""
|
---|
| 163 | endif
|
---|
| 164 |
|
---|
[e16e036a] | 165 | ## Toolchain configuration
|
---|
| 166 | #
|
---|
| 167 |
|
---|
[c31e536] | 168 | ifeq ($(COMPILER),gcc_native)
|
---|
[e16e036a] | 169 | CC = gcc
|
---|
[4a8635b] | 170 | GCC = gcc
|
---|
[f5b4fb9] | 171 | AS = $(BINUTILS_PREFIX)as
|
---|
| 172 | LD = $(BINUTILS_PREFIX)ld
|
---|
| 173 | OBJCOPY = $(BINUTILS_PREFIX)objcopy
|
---|
| 174 | OBJDUMP = $(BINUTILS_PREFIX)objdump
|
---|
[bd1deed] | 175 | LIBDIR = /usr/lib
|
---|
[52d30c4] | 176 | CFLAGS = $(GCC_CFLAGS)
|
---|
[c31e536] | 177 | endif
|
---|
| 178 |
|
---|
| 179 | ifeq ($(COMPILER),icc_native)
|
---|
| 180 | CC = icc
|
---|
[4a8635b] | 181 | GCC = gcc
|
---|
[c31e536] | 182 | AS = as
|
---|
| 183 | LD = ld
|
---|
| 184 | OBJCOPY = objcopy
|
---|
| 185 | OBJDUMP = objdump
|
---|
| 186 | LIBDIR = /usr/lib
|
---|
[44bec47] | 187 | CFLAGS = $(ICC_CFLAGS)
|
---|
[c31e536] | 188 | endif
|
---|
| 189 |
|
---|
[1e847fb] | 190 | ifeq ($(COMPILER),suncc_native)
|
---|
| 191 | CC = suncc
|
---|
[4a8635b] | 192 | GCC = gcc
|
---|
[f5b4fb9] | 193 | AS = $(BINUTILS_PREFIX)as
|
---|
| 194 | LD = $(BINUTILS_PREFIX)ld
|
---|
| 195 | OBJCOPY = $(BINUTILS_PREFIX)objcopy
|
---|
| 196 | OBJDUMP = $(BINUTILS_PREFIX)objdump
|
---|
[1e847fb] | 197 | LIBDIR = /usr/lib
|
---|
[52d30c4] | 198 | CFLAGS = $(SUNCC_CFLAGS)
|
---|
[1e847fb] | 199 | endif
|
---|
| 200 |
|
---|
[c31e536] | 201 | ifeq ($(COMPILER),gcc_cross)
|
---|
[bd1deed] | 202 | CC = $(TOOLCHAIN_DIR)/bin/$(TARGET)-gcc
|
---|
[4a8635b] | 203 | GCC = $(CC)
|
---|
[bd1deed] | 204 | AS = $(TOOLCHAIN_DIR)/bin/$(TARGET)-as
|
---|
| 205 | LD = $(TOOLCHAIN_DIR)/bin/$(TARGET)-ld
|
---|
| 206 | OBJCOPY = $(TOOLCHAIN_DIR)/bin/$(TARGET)-objcopy
|
---|
| 207 | OBJDUMP = $(TOOLCHAIN_DIR)/bin/$(TARGET)-objdump
|
---|
| 208 | LIBDIR = $(TOOLCHAIN_DIR)/lib
|
---|
[52d30c4] | 209 | CFLAGS = $(GCC_CFLAGS)
|
---|
[e16e036a] | 210 | endif
|
---|
| 211 |
|
---|
| 212 | ## Generic kernel sources
|
---|
| 213 | #
|
---|
| 214 |
|
---|
| 215 | GENERIC_SOURCES = \
|
---|
[0d65d76] | 216 | generic/src/adt/avl.c \
|
---|
[97a7eff] | 217 | generic/src/adt/bitmap.c \
|
---|
[018d957e] | 218 | generic/src/adt/btree.c \
|
---|
[c585827] | 219 | generic/src/adt/hash_table.c \
|
---|
[5c9a08b] | 220 | generic/src/adt/list.c \
|
---|
[2677758] | 221 | generic/src/console/chardev.c \
|
---|
| 222 | generic/src/console/console.c \
|
---|
[f4338d2] | 223 | generic/src/console/kconsole.c \
|
---|
[442d0ae] | 224 | generic/src/console/cmd.c \
|
---|
[e16e036a] | 225 | generic/src/cpu/cpu.c \
|
---|
[9a8d91b] | 226 | generic/src/ddi/ddi.c \
|
---|
[7dcf22a] | 227 | generic/src/ddi/irq.c \
|
---|
| 228 | generic/src/ddi/device.c \
|
---|
[973be64e] | 229 | generic/src/interrupt/interrupt.c \
|
---|
[169c408] | 230 | generic/src/main/main.c \
|
---|
| 231 | generic/src/main/kinit.c \
|
---|
| 232 | generic/src/main/uinit.c \
|
---|
[0132630] | 233 | generic/src/main/version.c \
|
---|
[f74bbaf] | 234 | generic/src/main/shutdown.c \
|
---|
[c98e6ee] | 235 | generic/src/proc/program.c \
|
---|
[169c408] | 236 | generic/src/proc/scheduler.c \
|
---|
| 237 | generic/src/proc/thread.c \
|
---|
| 238 | generic/src/proc/task.c \
|
---|
| 239 | generic/src/proc/the.c \
|
---|
[56976a17] | 240 | generic/src/proc/tasklet.c \
|
---|
[a59e81e] | 241 | generic/src/syscall/syscall.c \
|
---|
[e3c762cd] | 242 | generic/src/syscall/copy.c \
|
---|
[169c408] | 243 | generic/src/mm/buddy.c \
|
---|
| 244 | generic/src/mm/frame.c \
|
---|
| 245 | generic/src/mm/page.c \
|
---|
| 246 | generic/src/mm/tlb.c \
|
---|
[20d50a1] | 247 | generic/src/mm/as.c \
|
---|
[0ee077ee] | 248 | generic/src/mm/backend_anon.c \
|
---|
| 249 | generic/src/mm/backend_elf.c \
|
---|
| 250 | generic/src/mm/backend_phys.c \
|
---|
[4e147a6] | 251 | generic/src/mm/slab.c \
|
---|
[169c408] | 252 | generic/src/lib/func.c \
|
---|
| 253 | generic/src/lib/memstr.c \
|
---|
| 254 | generic/src/lib/sort.c \
|
---|
[de6b301] | 255 | generic/src/lib/elf.c \
|
---|
[d4b5542] | 256 | generic/src/lib/rd.c \
|
---|
[6445baf] | 257 | generic/src/printf/printf_core.c \
|
---|
| 258 | generic/src/printf/printf.c \
|
---|
| 259 | generic/src/printf/sprintf.c \
|
---|
| 260 | generic/src/printf/snprintf.c \
|
---|
| 261 | generic/src/printf/vprintf.c \
|
---|
| 262 | generic/src/printf/vsprintf.c \
|
---|
| 263 | generic/src/printf/vsnprintf.c \
|
---|
[169c408] | 264 | generic/src/debug/symtab.c \
|
---|
| 265 | generic/src/time/clock.c \
|
---|
| 266 | generic/src/time/timeout.c \
|
---|
| 267 | generic/src/time/delay.c \
|
---|
| 268 | generic/src/preempt/preemption.c \
|
---|
| 269 | generic/src/synch/spinlock.c \
|
---|
| 270 | generic/src/synch/condvar.c \
|
---|
| 271 | generic/src/synch/rwlock.c \
|
---|
| 272 | generic/src/synch/mutex.c \
|
---|
| 273 | generic/src/synch/semaphore.c \
|
---|
[c98e6ee] | 274 | generic/src/synch/smc.c \
|
---|
[169c408] | 275 | generic/src/synch/waitq.c \
|
---|
[9aa72b4] | 276 | generic/src/synch/futex.c \
|
---|
[6d9c49a] | 277 | generic/src/smp/ipi.c \
|
---|
[26678e5] | 278 | generic/src/smp/smp.c \
|
---|
[e74cb73] | 279 | generic/src/ipc/ipc.c \
|
---|
[4e49572] | 280 | generic/src/ipc/sysipc.c \
|
---|
[1077d91] | 281 | generic/src/ipc/ipcrsc.c \
|
---|
[162f919] | 282 | generic/src/ipc/irq.c \
|
---|
[2666daa] | 283 | generic/src/security/cap.c \
|
---|
| 284 | generic/src/sysinfo/sysinfo.c
|
---|
[bbf5657] | 285 |
|
---|
[36a140b] | 286 | ## Test sources
|
---|
| 287 | #
|
---|
| 288 |
|
---|
[50661ab] | 289 | ifeq ($(CONFIG_TEST),y)
|
---|
[36a140b] | 290 | DEFS += -DCONFIG_TEST
|
---|
[319e60e] | 291 | CFLAGS += -Itest/
|
---|
| 292 | GENERIC_SOURCES += \
|
---|
| 293 | test/test.c \
|
---|
[50661ab] | 294 | test/atomic/atomic1.c \
|
---|
| 295 | test/btree/btree1.c \
|
---|
[0d65d76] | 296 | test/avltree/avltree1.c \
|
---|
[50661ab] | 297 | test/debug/mips1.c \
|
---|
| 298 | test/fault/fault1.c \
|
---|
[f272cb8] | 299 | test/fpu/fpu1.c \
|
---|
| 300 | test/fpu/sse1.c \
|
---|
| 301 | test/fpu/mips2.c \
|
---|
| 302 | test/mm/falloc1.c \
|
---|
| 303 | test/mm/falloc2.c \
|
---|
| 304 | test/mm/mapping1.c \
|
---|
| 305 | test/mm/slab1.c \
|
---|
| 306 | test/mm/slab2.c \
|
---|
[70b6de1] | 307 | test/mm/purge1.c \
|
---|
| 308 | test/synch/rwlock1.c \
|
---|
| 309 | test/synch/rwlock2.c \
|
---|
| 310 | test/synch/rwlock3.c \
|
---|
| 311 | test/synch/rwlock4.c \
|
---|
| 312 | test/synch/rwlock5.c \
|
---|
| 313 | test/synch/semaphore1.c \
|
---|
| 314 | test/synch/semaphore2.c \
|
---|
| 315 | test/print/print1.c \
|
---|
| 316 | test/thread/thread1.c \
|
---|
| 317 | test/sysinfo/sysinfo1.c
|
---|
[36a140b] | 318 | endif
|
---|
| 319 |
|
---|
[e16e036a] | 320 | GENERIC_OBJECTS := $(addsuffix .o,$(basename $(GENERIC_SOURCES)))
|
---|
| 321 | ARCH_OBJECTS := $(addsuffix .o,$(basename $(ARCH_SOURCES)))
|
---|
| 322 | GENARCH_OBJECTS := $(addsuffix .o,$(basename $(GENARCH_SOURCES)))
|
---|
[c9ed176] | 323 |
|
---|
[b629483] | 324 | .PHONY: all build config distclean clean archlinks depend disasm
|
---|
[c9ed176] | 325 |
|
---|
[839470f] | 326 | all:
|
---|
[41f7564] | 327 | ../tools/config.py kernel.config default $(ARCH) $(COMPILER) $(CONFIG_DEBUG) $(MACHINE)
|
---|
[940cac0] | 328 | $(MAKE) -C . build
|
---|
[839470f] | 329 |
|
---|
[b629483] | 330 | build: kernel.bin disasm
|
---|
[839470f] | 331 |
|
---|
| 332 | config:
|
---|
[208189f] | 333 | -rm Makefile.depend
|
---|
[d178208] | 334 | ../tools/config.py kernel.config
|
---|
[c9ed176] | 335 |
|
---|
| 336 | -include Makefile.depend
|
---|
| 337 |
|
---|
[839470f] | 338 | distclean: clean
|
---|
| 339 | -rm Makefile.config
|
---|
| 340 |
|
---|
[e16e036a] | 341 | clean:
|
---|
[fcfac420] | 342 | -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
|
---|
[839470f] | 343 | find generic/src/ arch/*/src/ genarch/src/ test/ -name '*.o' -follow -exec rm \{\} \;
|
---|
[41f7564] | 344 | for arch in arch/* ; do \
|
---|
| 345 | [ -e $$arch/_link.ld ] && rm $$arch/_link.ld 2>/dev/null ; \
|
---|
| 346 | done ; exit 0
|
---|
[c9ed176] | 347 |
|
---|
[839470f] | 348 | archlinks:
|
---|
[e16e036a] | 349 | ln -sfn ../../arch/$(ARCH)/include/ generic/include/arch
|
---|
| 350 | ln -sfn ../../genarch/include/ generic/include/genarch
|
---|
[c9ed176] | 351 |
|
---|
[6095342] | 352 | depend: archlinks
|
---|
[d6e8529] | 353 | -makedepend $(DEFS) $(CFLAGS) -f - $(ARCH_SOURCES) $(GENARCH_SOURCES) $(GENERIC_SOURCES) > Makefile.depend 2> /dev/null
|
---|
[c9ed176] | 354 |
|
---|
[e16e036a] | 355 | arch/$(ARCH)/_link.ld: arch/$(ARCH)/_link.ld.in
|
---|
[4a8635b] | 356 | $(GCC) $(DEFS) $(GCC_CFLAGS) -D__ASM__ -D__LINKER__ -E -x c $< | grep -v "^\#" > $@
|
---|
[c9ed176] | 357 |
|
---|
[e16e036a] | 358 | generic/src/debug/real_map.bin: depend arch/$(ARCH)/_link.ld $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS)
|
---|
[1314e3b] | 359 | echo $(SYMTAB_SECTION) | $(AS) $(AFLAGS) -o generic/src/debug/empty_map.o
|
---|
[bd1deed] | 360 | $(LD) -T arch/$(ARCH)/_link.ld $(LFLAGS) $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) $(EXTRA_OBJECTS) generic/src/debug/empty_map.o -o $@ -Map kernel.map.pre
|
---|
[e16e036a] | 361 | $(OBJDUMP) -t $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) > kernel.objdump
|
---|
[169c408] | 362 | tools/genmap.py kernel.map.pre kernel.objdump generic/src/debug/real_map.bin
|
---|
[3550c393] | 363 | # Do it once again, this time to get correct even the symbols
|
---|
| 364 | # on architectures, that have bss after symtab
|
---|
[1314e3b] | 365 | echo $(SYMTAB_SECTION)" .incbin \"$@\"" | $(AS) $(AFLAGS) -o generic/src/debug/sizeok_map.o
|
---|
[bd1deed] | 366 | $(LD) -T arch/$(ARCH)/_link.ld $(LFLAGS) $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) $(EXTRA_OBJECTS) generic/src/debug/sizeok_map.o -o $@ -Map kernel.map.pre
|
---|
[3550c393] | 367 | $(OBJDUMP) -t $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) > kernel.objdump
|
---|
| 368 | tools/genmap.py kernel.map.pre kernel.objdump generic/src/debug/real_map.bin
|
---|
[c9ed176] | 369 |
|
---|
[169c408] | 370 | generic/src/debug/real_map.o: generic/src/debug/real_map.bin
|
---|
[1314e3b] | 371 | echo $(SYMTAB_SECTION)" .incbin \"$<\"" | $(AS) $(AFLAGS) -o $@
|
---|
[c9ed176] | 372 |
|
---|
[6e259d5] | 373 | kernel.raw: depend arch/$(ARCH)/_link.ld $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) generic/src/debug/real_map.o
|
---|
[bd1deed] | 374 | $(LD) -T arch/$(ARCH)/_link.ld $(LFLAGS) $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) $(EXTRA_OBJECTS) generic/src/debug/real_map.o -o $@ -Map kernel.map
|
---|
[c9ed176] | 375 |
|
---|
[6e259d5] | 376 | kernel.bin: kernel.raw
|
---|
| 377 | $(OBJCOPY) -O $(BFD) kernel.raw kernel.bin
|
---|
| 378 |
|
---|
[2ccd275] | 379 | disasm: kernel.raw
|
---|
| 380 | $(OBJDUMP) -d kernel.raw > kernel.disasm
|
---|
| 381 |
|
---|
[c9ed176] | 382 | %.o: %.S
|
---|
[4a8635b] | 383 | $(GCC) $(DEFS) $(GCC_CFLAGS) -D__ASM__ -c $< -o $@
|
---|
[c9ed176] | 384 |
|
---|
| 385 | %.o: %.s
|
---|
[6bc4dbd] | 386 | $(AS) $(AFLAGS) $< -o $@
|
---|
[c9ed176] | 387 |
|
---|
[23cdc921] | 388 | #
|
---|
| 389 | # The FPU tests are the only objects for which we allow the compiler to generate
|
---|
| 390 | # FPU instructions.
|
---|
| 391 | #
|
---|
| 392 | test/fpu/%.o: test/fpu/%.c
|
---|
[bd1deed] | 393 | $(CC) $(DEFS) $(CFLAGS) $(EXTRA_FLAGS) -c $< -o $@
|
---|
[23cdc921] | 394 |
|
---|
| 395 | #
|
---|
| 396 | # Ordinary objects.
|
---|
| 397 | #
|
---|
| 398 | %.o: %.c
|
---|
| 399 | $(CC) $(DEFS) $(CFLAGS) $(EXTRA_FLAGS) $(FPU_NO_CFLAGS) -c $< -o $@
|
---|