diff --git a/.gitignore b/.gitignore index 01b5dda..f40eabd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,8 @@ build/ bootloader/ +.ccls-cache/ +compile_commands.json + # ---> C # Prerequisites *.d diff --git a/README.md b/README.md index 285430a..16c082f 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,9 @@ Just a piece of OS type things I plan on toying with. ### Building -`Make all`, will place in `build/`. +`make all`, will place in `build/`. -In order for `Make run` to work, you'll need qemu for x86. This will likely change to build a complete image that pulls in a bootloader. +In order for `make run` to work, you'll need qemu for x86. You will also need a i686 cross compiler. + +If you want a full image, `make iso` will do that.