All checks were successful
Build documentation / build-and-deploy (push) Successful in 1m53s
25 lines
571 B
Bash
Executable File
25 lines
571 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -xe
|
|
|
|
debugopt=""
|
|
|
|
if [ "$1" = "debug" ]; then
|
|
debugopt="buildtype=debug"
|
|
fi
|
|
|
|
make -B all_lz4
|
|
make -B all_kernel "$debugopt"
|
|
make -B all_libsystem "$debugopt"
|
|
make -B all_liballoc "$debugopt"
|
|
make -B all_libprocess "$debugopt"
|
|
make -B all_libterminal "$debugopt"
|
|
make -B all_libstring "$debugopt"
|
|
make -B all_libkb "$debugopt"
|
|
make -B all_libaux "$debugopt"
|
|
make -B all_libarena "$debugopt"
|
|
make -B all_libioutil "$debugopt"
|
|
make -B all_apps "$debugopt"
|
|
make -B all_dist
|
|
./aux/limine_iso_amd64.sh
|