mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-26 15:26:43 +00:00
106 lines
2.9 KiB
Makefile
106 lines
2.9 KiB
Makefile
# This is the name that our final kernel executable will have.
|
|
# Change as needed.
|
|
override KERNEL := zealbooter.elf
|
|
|
|
# Convenience macro to reliably declare overridable command variables.
|
|
define DEFAULT_VAR =
|
|
ifeq ($(origin $1), default)
|
|
override $(1) := $(2)
|
|
endif
|
|
ifeq ($(origin $1), undefined)
|
|
override $(1) := $(2)
|
|
endif
|
|
endef
|
|
|
|
# It is highly recommended to use a custom built cross toolchain to build a kernel.
|
|
# We are only using "cc" as a placeholder here. It may work by using
|
|
# the host system's toolchain, but this is not guaranteed.
|
|
$(eval $(call DEFAULT_VAR,CC,cc))
|
|
|
|
# Same thing for "ld" (the linker).
|
|
$(eval $(call DEFAULT_VAR,LD,ld))
|
|
|
|
# User controllable CFLAGS.
|
|
CFLAGS ?= -O2 -g -Wall -Wextra -Wpedantic -pipe
|
|
|
|
# User controllable preprocessor flags. We set none by default.
|
|
CPPFLAGS ?=
|
|
|
|
# User controllable nasm flags.
|
|
NASMFLAGS ?= -F dwarf -g
|
|
|
|
# User controllable linker flags. We set none by default.
|
|
LDFLAGS ?=
|
|
|
|
# Internal C flags that should not be changed by the user.
|
|
override CFLAGS += \
|
|
-I. \
|
|
-std=c11 \
|
|
-ffreestanding \
|
|
-fno-stack-protector \
|
|
-fno-stack-check \
|
|
-fno-pie \
|
|
-fno-pic \
|
|
-m64 \
|
|
-march=x86-64 \
|
|
-mabi=sysv \
|
|
-mno-80387 \
|
|
-mno-mmx \
|
|
-mno-sse \
|
|
-mno-sse2 \
|
|
-mno-red-zone \
|
|
-mcmodel=kernel \
|
|
-MMD
|
|
|
|
# Internal linker flags that should not be changed by the user.
|
|
override LDFLAGS += \
|
|
-nostdlib \
|
|
-static \
|
|
-z max-page-size=0x1000 \
|
|
-T linker.ld
|
|
|
|
# Internal nasm flags that should not be changed by the user.
|
|
override NASMFLAGS += \
|
|
-f elf64
|
|
|
|
# Use find to glob all *.c, *.S, and *.asm files in the directory and extract the object names.
|
|
override CFILES := $(shell find ./ -type f -name '*.c')
|
|
override ASFILES := $(shell find ./ -type f -name '*.S')
|
|
override NASMFILES := $(shell find ./ -type f -name '*.asm')
|
|
override OBJ := $(CFILES:.c=.o) $(ASFILES:.S=.o) $(NASMFILES:.asm=.o)
|
|
override HEADER_DEPS := $(CFILES:.c=.d) $(ASFILES:.S=.d)
|
|
|
|
# Default target.
|
|
.PHONY: all
|
|
all: $(KERNEL)
|
|
|
|
limine.h:
|
|
curl https://raw.githubusercontent.com/limine-bootloader/limine/trunk/limine.h -o $@
|
|
|
|
# Link rules for the final kernel executable.
|
|
$(KERNEL): $(OBJ)
|
|
$(LD) $(OBJ) $(LDFLAGS) -o $@
|
|
|
|
# Include header dependencies.
|
|
-include $(HEADER_DEPS)
|
|
|
|
# Compilation rules for *.c files.
|
|
%.o: %.c limine.h
|
|
$(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@
|
|
|
|
# Compilation rules for *.S files.
|
|
%.o: %.S limine.h
|
|
$(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@
|
|
|
|
# Compilation rules for *.asm (nasm) files.
|
|
%.o: %.asm
|
|
nasm $(NASMFLAGS) $< -o $@
|
|
|
|
# Remove object files and the final executable.
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf $(KERNEL) $(OBJ) $(HEADER_DEPS)
|
|
|
|
.PHONY: distclean
|
|
distclean: clean
|
|
rm -f limine.h
|