1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2024-11-20 11:16:10 -05:00

Move "/src/" to "/arch/"

This commit is contained in:
Braiden Vasco 2017-11-01 07:06:34 +00:00
parent d6e3ae793f
commit fe422cfb09
19 changed files with 4 additions and 4 deletions

2
.gitignore vendored
View file

@ -1,3 +1,3 @@
*.o
/src/kernel
/arch/kernel

View file

@ -1,8 +1,8 @@
run: all
qemu-system-i386 -kernel src/kernel -d guest_errors
qemu-system-i386 -kernel arch/kernel -d guest_errors
all:
make all -C src
make all -C arch
clean:
make clean -C src
make clean -C arch