2022-01-20 05:17:45 +01:00
|
|
|
#! /bin/sh
|
2022-01-16 06:09:36 +01:00
|
|
|
|
|
|
|
set -ex
|
|
|
|
|
2022-01-22 03:10:25 +01:00
|
|
|
srcdir="$(dirname "$0")"
|
2022-01-16 06:09:36 +01:00
|
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
|
|
|
|
cd "$srcdir"
|
|
|
|
|
2022-10-04 00:58:00 +02:00
|
|
|
[ -d common/term ] || git clone https://github.com/limine-bootloader/terminal.git common/term
|
2023-02-15 11:19:00 +01:00
|
|
|
[ -f common/stb/stb_image.h ] || ( curl -Lo common/stb/stb_image.h https://github.com/nothings/stb/raw/master/stb_image.h && patch -p0 < common/stb_image.patch )
|
2023-03-14 12:08:14 +01:00
|
|
|
[ -f freestanding-toolchain ] || ( curl -Lo freestanding-toolchain https://github.com/mintsuki/freestanding-toolchain/raw/trunk/freestanding-toolchain && chmod +x freestanding-toolchain )
|
2022-06-30 07:48:42 +02:00
|
|
|
[ -d freestanding-headers ] || git clone https://github.com/mintsuki/freestanding-headers.git
|
2022-06-14 05:58:34 +02:00
|
|
|
[ -d limine-efi ] || git clone https://github.com/limine-bootloader/limine-efi.git
|
2022-09-02 01:08:19 +02:00
|
|
|
[ -d libgcc-binaries ] || git clone https://github.com/mintsuki/libgcc-binaries.git
|
2022-08-26 10:35:23 +02:00
|
|
|
|
2023-03-14 20:07:05 +01:00
|
|
|
autoreconf -fvi -Wall
|