aboutsummaryrefslogtreecommitdiff
path: root/make
blob: 69155c3ac1038e951f17bad6ea82978aefbf7649 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh
LIB=""

printf -- "\n\nmake\n"
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