Files
MacroLibX/example/build.sh
2024-12-16 01:24:25 +01:00

12 lines
223 B
Bash
Executable File

#!/bin/bash
if [ -e a.out ]; then
rm a.out
fi
if [ $(uname -s) = 'Darwin' ]; then
clang main.c ../libmlx.dylib -L /opt/homebrew/lib -lSDL2 -lm -g;
else
clang main.c ../libmlx.so -lSDL2 -lm -g -Wall -Wextra -Werror;
fi