diff options
| author | Raymaekers Luca <luca@keyfried.com> | 2024-11-26 16:15:52 +0100 |
|---|---|---|
| committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-11-26 16:15:52 +0100 |
| commit | e3163541c69aabba996c2b85f20639af6fa1f568 (patch) | |
| tree | 28b0c596c866253a9ff8e1ef64d62ac6f7d41057 /build.sh | |
| parent | cc0552c209dddde49d8848587071b26954cb214f (diff) | |
| parent | 76a2aea0b3b9a601dcf09c10e41154af2eb6273c (diff) | |
Merge branch 'main' of db:chatty
Diffstat (limited to 'build.sh')
| -rwxr-xr-x | build.sh | 21 |
1 files changed, 5 insertions, 16 deletions
@@ -1,17 +1,6 @@ #!/bin/sh -build () { - ( - set -x - gcc -ggdb -Wall -pedantic -std=c99 -I./external -o ${1%.c} $@ - ) -} - -if [ "$1" ]; then - build "$1" - exit -fi - -[ -x ./external/keyboard ] || build external/keyboard.c -build chatty.c -build server.c -build send.c +set -x +gcc external/keyboard.c +gcc -DDEBUG -ggdb -Wall -pedantic -std=c99 -o chatty chatty.c +gcc -DDEBUG -ggdb -Wall -pedantic -std=c99 -o server server.c +gcc -DDEBUG -ggdb -Wall -pedantic -std=c99 -o send send.c |
