diff options
author | Marvin Borner | 2020-09-12 13:54:11 +0200 |
---|---|---|
committer | Marvin Borner | 2020-09-12 13:54:11 +0200 |
commit | 9df62e1f972784d87d01baa0ad950c005f41061a (patch) | |
tree | 86f6cbef89399d56cd4165ef8a6bebd18a00d7f7 /kernel/Makefile | |
parent | 27337731330ec60e2f7f4abdcd4ed5ef7b8b4882 (diff) |
Independent ext2 bootloader for bigger kernels
Diffstat (limited to 'kernel/Makefile')
-rw-r--r-- | kernel/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
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 |