6 lines
144 B
Makefile
6 lines
144 B
Makefile
CC = gcc
|
|
LD = ld -m elf_i386
|
|
CFLAGS = -Wall -Wextra -pedantic -m32 -O0 -std=c99 -finline-functions -nostdinc -ffreestanding
|
|
NASM = nasm -f elf
|
|
|