Files
fox-shell/make
2026-02-09 13:24:11 -06:00

10 lines
181 B
Bash
Executable File

#!/bin/sh
LIB=""
echo make
if [[ "$1" == "debug" ]]; then
clang -o ./bin/shell ./src/main.c $LIB -Wall -g -fsanitize=address
else
clang -o ./bin/shell ./src/main.c $LIB
fi