9 lines
157 B
Bash
9 lines
157 B
Bash
CC=i386-elf-gcc
|
|
LD=i386-elf-ld
|
|
AS=nasm
|
|
AR=ar
|
|
|
|
CFLAGS=-ffreestanding -m32 -O2 -Wall -Wextra -pedantic # -DKERNEL_LOG
|
|
LDFLAGS=-nostdlib
|
|
|
|
QEMU=qemu-system-i386
|