Files
djstdlib/build
Daniel Ledda a580e7b1cb updates
2025-11-10 03:15:14 +01:00

8 lines
132 B
Bash
Executable File

#!/bin/bash
clang -g -g3 -lm -DOS_LINUX=1 -DENABLE_ASSERT=1 ./app.c -o ./target/app
if [[ $1 == "run" ]] then
./target/app
fi