2023-11-07 10:14:07 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -xe
|
|
|
|
|
2023-11-13 10:16:57 -05:00
|
|
|
clang -DSTATIC_SOURCE -g -Weverything -O0 -o xhartae xhartae.c
|
2023-11-09 09:41:53 -05:00
|
|
|
|
2023-11-13 10:16:57 -05:00
|
|
|
gcc -g -Wall -Wextra -Wpedantic -O0 -c -o chapters/chapter_0.o chapters/chapter_0.c
|
|
|
|
gcc -g -Wall -Wextra -Wpedantic -O0 -c -o chapters/chapter_1.o chapters/chapter_1.c
|
|
|
|
gcc -g -Wall -Wextra -Wpedantic -O0 -c -o chapters/chapter_2.o chapters/chapter_2.c
|
|
|
|
gcc -g -Wall -Wextra -Wpedantic -O0 -c -o chapters/chapter_3.o chapters/chapter_3.c
|
|
|
|
|
|
|
|
gcc -g -Wall -Wextra -Wpedantic -O0 -c -o xhartae.o xhartae.c
|
2023-11-09 09:41:53 -05:00
|
|
|
|
2023-11-12 07:19:44 -05:00
|
|
|
gcc -o xhartae xhartae.o chapters/chapter_0.o chapters/chapter_1.o chapters/chapter_2.o chapters/chapter_3.o
|
2023-11-07 10:14:07 -05:00
|
|
|
|
|
|
|
exit
|