From b42d245a5c408e487f132a7ee84c9f4627c5b889 Mon Sep 17 00:00:00 2001 From: Raymaekers Luca Date: Mon, 21 Oct 2024 00:16:33 +0200 Subject: Added minimal send implementation Renamed minirecv.c to recv.c Added build commands to build.sh Added the use of common code --- build.sh | 2 ++ 1 file changed, 2 insertions(+) (limited to 'build.sh') diff --git a/build.sh b/build.sh index 60a538d..bfd8c19 100755 --- a/build.sh +++ b/build.sh @@ -2,3 +2,5 @@ set -x gcc -g -Wall -pedantic -std=c99 -o chatty client.c common.c gcc -g -Wall -pedantic -std=c99 -o server server.c common.c +gcc -g -Wall -pedantic -std=c99 -o send send.c common.c +gcc -g -Wall -pedantic -std=c99 -o recv recv.c common.c -- cgit v1.2.3