From 9df62e1f972784d87d01baa0ad950c005f41061a Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 12 Sep 2020 13:54:11 +0200 Subject: Independent ext2 bootloader for bigger kernels --- kernel/Makefile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'kernel/Makefile') diff --git a/kernel/Makefile b/kernel/Makefile index c6b6d93..353a339 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -27,7 +27,7 @@ CFLAGS = $(CSFLAGS) -Wall -Wextra -nostdlib -nostdinc -ffreestanding -fno-builti ASFLAGS = -f elf32 -all: compile bootloader +all: compile %.o: %.c @$(CC) -c $(CFLAGS) $< -o $@ @@ -35,10 +35,6 @@ all: compile bootloader %_asm.o: %.asm @$(AS) $(ASFLAGS) $< -o $@ -bootloader: - @mkdir -p ../build/ - @$(AS) -f bin entry.asm -o ../build/boot.bin - compile: $(COBJS) @mkdir -p ../build/ @$(LD) -N -ekernel_main -Ttext 0x00050000 -o ../build/kernel.bin -L../build/ $+ -lk --oformat binary -- cgit v1.2.3