diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-12-07 19:17:33 +0100 |
---|---|---|
committer | Raymaekers Luca <luca@spacehb.net> | 2025-01-07 18:51:21 +0100 |
commit | 0574f5a7c5159a2ae1d7d2182cec982509947db9 (patch) | |
tree | 2a9678fd39bcf8ead03c7ee979caf668f2f17892 /build.sh | |
parent | 4aec2e1331650cabb966bbf24ed83f76cbbe9912 (diff) |
checkpoint
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -1,6 +1,7 @@ #!/bin/sh set -x -gcc external/keyboard.c -gcc -DDEBUG -ggdb -Wall -pedantic -std=c99 -o chatty chatty.c -gcc -DDEBUG -ggdb -Wall -pedantic -std=c99 -o server server.c -gcc -DDEBUG -ggdb -Wall -pedantic -std=c99 -o send send.c +# gcc external/keyboard.c +gcc -DDEBUG -ggdb -Wall -pedantic -std=c11 -I external -o build/chatty chatty.c +gcc -DDEBUG -ggdb -Wall -pedantic -std=c99 -o build/server server.c +# gcc -DDEBUG -ggdb -Wall -pedantic -std=c99 -o build/send send.c +gcc -DDEBUG -ggdb -Wall -pedantic -std=c11 -I external -I . -o build/input_box archived/input_box.c |