diff options
Diffstat (limited to 'boot')
-rw-r--r-- | boot/Makefile | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/boot/Makefile b/boot/Makefile index d3a1f2d..5516a20 100644 --- a/boot/Makefile +++ b/boot/Makefile @@ -1,10 +1,5 @@ # 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 = $(CFLAGS_DEFAULT) -ffreestanding -fno-stack-protector -fno-sanitize=undefined -Ofast ASFLAGS = -f elf32 @@ -12,7 +7,7 @@ ASFLAGS = -f elf32 all: compile compile: - @mkdir -p ../build/ + @mkdir -p $(BUILD) @$(CC) -c $(CFLAGS) load.c -o load.o - @$(LD) -N -emain -Ttext 0x00009000 -o ../build/load.bin load.o --oformat binary - @$(AS) -f bin entry.asm -o ../build/boot.bin + @$(LD) -N -emain -Ttext 0x00009000 -o $(BUILD)/load.bin load.o --oformat binary + @$(AS) -f bin entry.asm -o $(BUILD)/boot.bin |