We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61cba86 commit 5fd2393Copy full SHA for 5fd2393
Makefile
@@ -40,5 +40,16 @@ build/jdsos.bin: build/ build/boot.o build/kernel.o
40
export PATH="$(CROSSBINDIR):$(PATH)" && \
41
i586-elf-gcc -T src/linker.ld -o $@ -ffreestanding -O2 -nostdlib $? -lgcc
42
43
+image/boot/jdsos.bin: build/jdsos.bin
44
+ cp $< $@
45
+
46
+dist/:
47
+ mkdir -p $@
48
49
+dist/jdsos.iso: dist/ image/boot/jdsos.bin
50
+ grub-mkrescue -o $@ image
51
52
+dist: dist/jdsos.iso
53
54
clean:
- rm -f build/*
55
+ rm -f build/* dist/* image/boot/*.bin
dist/.gitkeep
image/boot/grub/grub.cfg
@@ -0,0 +1,3 @@
1
+menuentry "jdsos" {
2
+ multiboot /boot/jdsos.bin
3
+}
0 commit comments