diff options
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,6 +1,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 +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 |