aboutsummaryrefslogtreecommitdiff
path: root/kernel/Makefile
diff options
context:
space:
mode:
authorMarvin Borner2020-09-12 13:54:11 +0200
committerMarvin Borner2020-09-12 13:54:11 +0200
commit9df62e1f972784d87d01baa0ad950c005f41061a (patch)
tree86f6cbef89399d56cd4165ef8a6bebd18a00d7f7 /kernel/Makefile
parent27337731330ec60e2f7f4abdcd4ed5ef7b8b4882 (diff)
Independent ext2 bootloader for bigger kernels
Diffstat (limited to 'kernel/Makefile')
-rw-r--r--kernel/Makefile6
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