thor-os/bootloader/Makefile
2013-12-31 16:44:04 +01:00

18 lines
283 B
Makefile

default: all
.PHONY: all clean
stage1.bin: stage1.asm
nasm -w+all -f bin -o stage1.bin stage1.asm
stage2.bin: stage2.asm
nasm -w+all -f bin -o stage2.bin stage2.asm
all: stage1.bin stage2.bin
clean:
rm -f stage1.bin
rm -f stage2.bin
rm -f padding.bin
rm -f bootloader.bin