diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-11-19 03:56:43 +0100 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-11-19 04:00:15 +0100 |
commit | 2a26ea96a9bde812ebe0ea194933b88167ca6f23 (patch) | |
tree | 1b41147f282f40b4fd3369c50fee0457592691eb /build.sh | |
parent | ce8790254a32ebc77a39ebd80dd1ee0f0a8be3cb (diff) |
added keyboard.c from termbox
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 |