18 lines
273 B
Bash
Executable File
18 lines
273 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -xe
|
|
|
|
bt="buildtype=release"
|
|
|
|
if [ "$1" = "debug" ]; then
|
|
bt="buildtype=debug"
|
|
fi
|
|
|
|
make -B all_limine
|
|
make -B all_lz4
|
|
make -B all_kernel "$bt"
|
|
make -B all_libu "$bt"
|
|
make -B all_apps "$bt"
|
|
make -B all_dist
|
|
./aux/limine_iso_amd64.sh
|