1
0
mirror of https://github.com/Ed94/bare_x86.git synced 2025-03-11 04:14:39 -07:00

19 lines
287 B
Makefile
Raw Permalink Normal View History

16bit.loader: 16bit.boot 16bit.ftable 16bit.scratch
cat 16bit.boot 16bit.ftable 16bit.scratch > 16bit.loader
make clean
16bit.boot:
nasm 16bit.boot.s
16bit.ftable:
nasm 16bit.ftable.s
16bit.scratch:
nasm 16bit.scratch.s
clean:
rm 16bit.boot
rm 16bit.ftable
rm 16bit.scratch