diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-10-21 00:16:33 +0200 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-10-21 00:24:23 +0200 |
commit | b42d245a5c408e487f132a7ee84c9f4627c5b889 (patch) | |
tree | a91762f3c841f5c14bfb4470c4671c2722948e46 /build.sh | |
parent | d4e7c6876eed2733a2678668bdcabdd87659e826 (diff) |
Added minimal send implementation
Renamed minirecv.c to recv.c
Added build commands to build.sh
Added the use of common code
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 |