Trying to figure out best directory structure...

This commit is contained in:
Nero 2019-03-24 18:30:49 +00:00
parent 8b750aabe9
commit 414f35a1ce
3 changed files with 7 additions and 7 deletions

7
Makefile Normal file
View File

@ -0,0 +1,7 @@
default: kernel.com
kernel.com: kernel/*.asm
nasm -s -o kernel.com -I kernel kernel/main.asm
clean:
rm -f *.com

View File

@ -1,7 +0,0 @@
default: kernel.com
kernel.com: *.asm
nasm -s -o kernel.com main.asm
clean:
rm -f *.com