blob: 1fd687612605e1f194781adbb87d2a50842074af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/bash
if [[ ! -d cc/toolchain ]]
then
git clone https://github.com/sigsegv7/osmora-toolchain cc/toolchain
fi
if [[ ! -d boot ]]
then
git clone https://github.com/limine-bootloader/limine.git --branch=v9.3.0-binary --depth=1 boot/limine
make -C boot/limine
fi
cd tools/omar; make; cd ../../
autoconf
|