From: Matthias Kruk Date: Sat, 5 Oct 2019 07:14:17 +0000 (+0900) Subject: Also compile libc from the top-level Makefile X-Git-Url: https://git.corax.cc/?a=commitdiff_plain;h=fef444e0a796b91a26b6af8a7b3b1d59acc547a6;p=corax Also compile libc from the top-level Makefile --- 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)