aboutsummaryrefslogtreecommitdiff
path: root/build.sh
blob: bfd8c19aa42af08d86c63fb04355f45c05b7bcd0 (plain)
1
2
3
4
5
6
#!/bin/sh
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