diff options
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2,7 +2,7 @@ build () { ( set -x - gcc -ggdb -Wall -pedantic -std=c99 -o ${1%.c} $@ + gcc -ggdb -Wall -pedantic -std=c99 -I./external -o ${1%.c} $@ ) } @@ -11,6 +11,7 @@ if [ "$1" ]; then exit fi +[ -x ./external/keyboard ] || build external/keyboard.c build chatty.c build server.c build send.c |