2023-09-04 14:14:06 +00:00
|
|
|
CFLAGS = -std=gnu99 -Os -Wall -Wextra -fno-builtin -ffreestanding -m32 -fno-asynchronous-unwind-tables -fno-common -fno-pie -march=i486 -fno-stack-protector -ffunction-sections -fdata-sections
|
|
|
|
LDFLAGS = -nostdlib -Wl,--build-id=none,--gc-sections -nostartfiles -static -m32
|
|
|
|
ASFLAGS = -m32
|
|
|
|
GRUBDIR = iso
|
|
|
|
SOURCEDIR = src
|
|
|
|
TARGET = kernel
|
2023-09-27 01:35:00 +00:00
|
|
|
LIB=libk
|
2023-10-11 00:38:29 +00:00
|
|
|
APP=hello_world
|