diff options
author | Freya Murphy <freya@freyacat.org> | 2025-04-08 14:34:49 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-04-08 14:34:49 -0400 |
commit | 5fdf67c66457df44017b90b5b5644a399df444f2 (patch) | |
tree | 35da24782c2e33588abdc4843bec896d849b17f4 | |
parent | fix makefile (diff) | |
download | comus-5fdf67c66457df44017b90b5b5644a399df444f2.tar.gz comus-5fdf67c66457df44017b90b5b5644a399df444f2.tar.bz2 comus-5fdf67c66457df44017b90b5b5644a399df444f2.zip |
undo bad
-rw-r--r-- | Makefile | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -5,11 +5,6 @@ UNAME := $(shell uname) -GRUB = grub-mkrescue -ifeq ($(UNAME), Darwin) - GRUB = x86_64-elf-grub-mkrescue -endif - QEMU = qemu-system-x86_64 QEMUOPTS = -cdrom bin/os.iso \ -no-reboot \ @@ -37,7 +32,7 @@ bin/os.iso: build mkdir -p bin/iso/boot/grub cp config/grub.cfg bin/iso/boot/grub cp bin/kernel bin/iso/boot - $(GRUB) -o bin/os.iso bin/iso 2>/dev/null + grub-mkrescue -o bin/os.iso bin/iso 2>/dev/null fmt: clang-format -i $(shell find -type f -name "*.[ch]" -and -not -path "./kernel/old/*") |