blob: 774eece21cf23685b2ef78f4f0dd10c738e078de (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# MIT License, Copyright (c) 2020 Marvin Borner
CC = ccache ../cross/opt/bin/i686-elf-gcc
LD = ccache ../cross/opt/bin/i686-elf-ld
OC = ccache ../cross/opt/bin/i686-elf-objcopy
AS = ccache nasm
CFLAGS = -Wall -Wextra -nostdlib -nostdinc -ffreestanding -fno-builtin -std=c99 -m32 -pedantic-errors -Ofast
ASFLAGS = -f elf32
all: compile
compile:
@mkdir -p ../build/
@$(CC) -c $(CFLAGS) load.c -o load.o
@$(LD) -N -emain -Ttext 0x00040000 -o ../build/load.bin load.o --oformat binary
@$(AS) -f bin entry.asm -o ../build/boot.bin
|