blob: 0500d3f98bd134645bb62015de81b73d7a77a292 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
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
autoconf
|