aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/makefile
diff options
context:
space:
mode:
authorEmulatedSeasons <89668582+EmulatedSeasons@users.noreply.github.com>2024-05-03 03:39:47 -0400
committerEmulatedSeasons <89668582+EmulatedSeasons@users.noreply.github.com>2024-05-03 03:39:47 -0400
commit2d59766eb330b9d15a9bcbcd7e1695809fc099c5 (patch)
treeb5abb4d0c0c488cbb44c2c0a54d59b44fe1fc462 /kernel/makefile
parent2461cd921d45e3d75245568bc59831c1f0a43331 (diff)
renamed i386 to x86
Diffstat (limited to 'kernel/makefile')
-rw-r--r--kernel/makefile7
1 files changed, 0 insertions, 7 deletions
diff --git a/kernel/makefile b/kernel/makefile
index 88659d9..7d02b32 100644
--- a/kernel/makefile
+++ b/kernel/makefile
@@ -1,25 +1,18 @@
# Kernel makefile
-ifndef GAS
- GAS = i686-elf-as
-endif
-
ifndef CFLAGS
CFLAGS = -ffreestanding -Wall -Wextra -g -std=gnu99 -O2 -Iinclude
- CFLAGS += --sysroot="$(SYSROOT)"
CFLAGS += -isystem="/usr/include"
endif
ifndef CXXFLAGS
CXXFLAGS = -ffreestanding -Wall -Wextra -fno-exceptions -fno-rtti -D__is_kernel -g -O2 -Iinclude
CXXFLAGS += -Iinclude
- CXXFLAGS += --sysroot="$(SYSROOT)"
CXXFLAGS += -isystem="/usr/include"
endif
ifndef LDFLAGS
LDFLAGS = -T arch/$(ARCH)/linker.ld -ffreestanding -g -O2 -Iinclude
- LDFLAGS += --sysroot="$(SYSROOT)"
LDFLAGS += -isystem="/usr/include"
endif