Skip to content

Commit

Permalink
some errors fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
captain-n3m0 committed May 14, 2023
1 parent 3be7d25 commit b474a45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Compiler and linker options
CC = gcc
LD = ld
CFLAGS = -m16 -ffreestanding -Wall -Wextra -nostdlib -nostdinc -fno-builtin -fno-stack-protector
LDFLAGS = -T Kernel16F.ld -melf_i386
CFLAGS = -m32 -ffreestanding -nostdlib -fno-builtin -fno-stack-protector -Wall -Wextra -Werror -Iinclude
LDFLAGS = -e _start

# Source files
SRCS = Kernel16F.c display/display.c filesystem/filesystem.c disk_operations/disk.c memory_manager/mem_manager.c string/string.c process_manager/proc_man.c cli_interface/cli.c
Expand Down

0 comments on commit b474a45

Please sign in to comment.