blob: 39e3f429f91da0749f48a9e66bb047729669c389 (
plain)
1
2
3
4
5
6
|
#!/bin/sh
set -x
gcc -g -Wall -pedantic -std=c99 -o chatty client.c
gcc -g -Wall -pedantic -std=c99 -o server server.c
gcc -g -Wall -pedantic -std=c99 -o send send.c
gcc -g -Wall -pedantic -std=c99 -o recv recv.c
|