From fef444e0a796b91a26b6af8a7b3b1d59acc547a6 Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Sat, 5 Oct 2019 16:14:17 +0900 Subject: [PATCH] Also compile libc from the top-level Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f463b6e..580802f 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -DEPS = kernel +DEPS = kernel libc OUTPUT = corax PHONY = $(DEPS) clean qemu #LAYOUT = $(shell setxkbmap -query | sed -nE 's/^layout:.*?([a-z]{2})$/\1/p') @@ -9,7 +9,7 @@ PHONY = $(DEPS) clean qemu all: $(OUTPUT) qemu: - qemu-system-i386 -k ja -kernel $(OUTPUT) -m 128 -display gtk + qemu-system-i386 -k ja -kernel $(OUTPUT) -m 128 -display gtk # -d int -no-reboot $(OUTPUT): $(DEPS) mv kernel/corax $(OUTPUT) -- 2.47.3