mirror of
https://github.com/Ed94/bare_x86.git
synced 2025-06-19 13:51:47 -07:00
Basic build and runs scripts, began setup of ftable n stuff
going the route of watching this series so far.
This commit is contained in:
18
Makefile
Normal file
18
Makefile
Normal file
@ -0,0 +1,18 @@
|
||||
|
||||
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
|
Reference in New Issue
Block a user