mirror of
https://github.com/wichtounet/thor-os.git
synced 2025-09-09 12:31:06 -04:00
18 lines
283 B
Makefile
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
|