10 lines
181 B
Bash
Executable File
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
|