12 lines
243 B
Bash
Executable File
12 lines
243 B
Bash
Executable File
git submodule update --init --recursive --remote
|
|
|
|
# Check what compiler we have
|
|
if type "musl-gcc" > /dev/null 2>&1; then
|
|
CC="musl-gcc"
|
|
else
|
|
echo "[WARN]: using gcc instead of musl-gcc (recommended)"
|
|
CC="gcc"
|
|
fi
|
|
|
|
$CC rtracker.c -o rtracker
|