format .env

This commit is contained in:
Tyler Murphy 2023-07-16 22:40:11 -04:00
parent 8ad6ef551e
commit 513b9b3199
3 changed files with 9 additions and 7 deletions

8
.env
View file

@ -1,9 +1,11 @@
CC=i386-elf-gcc
LD=i386-elf-ld
ARCH = i386
FORMAT = elf
CC = $(ARCH)-$(FORMAT)-gcc
LD = $(ARCH)-$(FORMAT)-ld
AS = nasm
AR = ar
CFLAGS = -ffreestanding -m32 -O2 -Wall -Wextra -pedantic # -DKERNEL_LOG
LDFLAGS = -nostdlib
QEMU=qemu-system-i386
QEMU = qemu-system-$(ARCH)