From ee0facda49bf0acf6f1402538a7974aed2ab4cf0 Mon Sep 17 00:00:00 2001 From: Raymaekers Luca Date: Sun, 24 Nov 2024 15:34:09 +0100 Subject: Implement horizontal versus vertical scrolling strategy --- build.sh | 21 +++++---------------- 1 file changed, 5 insertions(+), 16 deletions(-) (limited to 'build.sh') diff --git a/build.sh b/build.sh index 4548af8..9d69974 100755 --- a/build.sh +++ b/build.sh @@ -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 -- cgit v1.2.3