From ccc1dd7b4ba8ad5efe51aac32b26f0859d93fbe5 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 5 Apr 2021 19:37:28 +0200 Subject: Restructured make layout and cleaned some apps --- boot/Makefile | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'boot') 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 -- cgit v1.2.3