blob: f90f790e3c4083c22aa12455dc4c11f91b23ed9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh
DEBUG=""
LIB="-I tinyosc"
[ ! -d "bin" ] && mkdir bin
while getopts "d" opt; do
case "$opt" in
d) DEBUG="-Wall -fsanitize=address -g"
;;
esac
done
shift $((OPTIND-1))
[ "${1:-}" = "--" ] && shift
printf "\n\nmaking project\n"
[ ! -e "src/config.c" ] && cp src/config.def.c src/config.c;
clang -o bin/chat-loop src/main.c $LIB -lm $DEBUG
clang -o bin/type src/type.c $LIB -lm $DEBUG
|