bare_x86/Makefile
Ed94 8d1ec63cc1 Basic build and runs scripts, began setup of ftable n stuff
going the route of watching this series so far.
2022-02-05 11:19:40 -05:00

19 lines
287 B
Makefile

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