Skip to content
Snippets Groups Projects
Commit 52fead23 authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Fix build

parent 2b5aa3fb
No related branches found
Tags 0.3.5
No related merge requests found
......@@ -5,6 +5,9 @@ build/bootloader: bootloader/$(ARCH)/**
build/harddrive.bin: build/filesystem.bin bootloader/$(ARCH)/**
nasm -f bin -o $@ -D ARCH_$(ARCH) -D FILESYSTEM=$< -ibootloader/$(ARCH)/ bootloader/$(ARCH)/disk.asm
build/harddrive.bin.gz: build/harddrive.bin
gzip -k -f $<
build/livedisk.bin: build/kernel_live bootloader/$(ARCH)/**
nasm -f bin -o $@ -D ARCH_$(ARCH) -D KERNEL=$< -ibootloader/$(ARCH)/ bootloader/$(ARCH)/disk.asm
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment