aboutsummaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
authorEmulatedSeasons <89668582+EmulatedSeasons@users.noreply.github.com>2024-05-07 11:07:03 -0400
committerEmulatedSeasons <89668582+EmulatedSeasons@users.noreply.github.com>2024-05-07 11:07:03 -0400
commitabaab98bd757cd0818cfcddc983eee25ab7672ed (patch)
tree4e5d407cf55877b38699ac12b904be2dc3d99864 /makefile
parent47d94ed4fd724d0e8b7819e7e3d0783c798ea190 (diff)
Made framebuffer class, serial write functions, and finally got makefile to build without having to make clean
Diffstat (limited to 'makefile')
-rw-r--r--makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile b/makefile
index 2581e21..d8535bc 100644
--- a/makefile
+++ b/makefile
@@ -22,11 +22,11 @@ build-all: kernel/kernel.bin libc/libc.a
libc/libc.a: install-headers
$(info [INFO] Building libc)
- $(MAKE) -C ./libc/ ARCH=$(ARCH) PREFIX=$(PWD)
+ $(MAKE) -C ./libc/ all
kernel/kernel.bin: libc/libc.a install-headers
$(info [INFO] Building kernel)
- $(MAKE) -C ./kernel/ ARCH=$(ARCH) PREFIX=$(PWD)
+ $(MAKE) -C ./kernel/ all
limine: build-all
cp kernel/kernel.bin isodir/boot