22 lines
652 B
Bash
Executable File
22 lines
652 B
Bash
Executable File
#! /bin/sh
|
|
|
|
set -ex
|
|
|
|
srcdir="$(dirname "$0")"
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
cd "$srcdir"
|
|
|
|
[ -d common/term ] || git clone https://github.com/limine-bootloader/terminal.git common/term
|
|
[ -d cross-detect ] || git clone https://github.com/mintsuki/cross-detect.git
|
|
[ -d freestanding-headers ] || git clone https://github.com/mintsuki/freestanding-headers.git
|
|
[ -d limine-efi ] || git clone https://github.com/limine-bootloader/limine-efi.git
|
|
[ -d libgcc-binaries ] || git clone https://github.com/mintsuki/libgcc-binaries.git
|
|
|
|
automake_libdir="$(automake --print-libdir)"
|
|
|
|
mkdir -p build-aux
|
|
cp "${automake_libdir}/install-sh" build-aux
|
|
|
|
autoreconf -fvi
|