Files
MacroLibX/example/build.sh
2024-01-17 07:41:15 +01:00

13 lines
216 B
Bash

#!/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 -g;
else
clang main.c ../libmlx.so -lSDL2 -g -Wall -Wextra -Werror;
fi