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

16
.env
View file

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