ThiesyyyOS/makefile

8 lines
220 B
Makefile
Raw Normal View History

2018-06-14 13:00:44 +02:00
all:
build=$(cat build)
sed 's/######/${build}/g' src/main.asm > tmp/main.asm
nasm src/boot.asm -o tmp/boot.bin
nasm tmp/main.asm -o tmp/main.bin
cat tmp/boot.bin tmp/main.bin > out/os.img
virtualbox --startvm own