10 lines
194 B
Bash
Executable File
10 lines
194 B
Bash
Executable File
#!/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
|