13 lines
234 B
Bash
Executable File
13 lines
234 B
Bash
Executable File
git submodule init
|
|
git submodule update
|
|
|
|
# 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
|