forked from xolatile/xhartae
27 lines
1.2 KiB
Bash
27 lines
1.2 KiB
Bash
#!/bin/bash
|
|
|
|
set -xe
|
|
|
|
clang -DSTATIC_SOURCE -g -Weverything -O0 -o xhartae xhartae.c
|
|
|
|
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
|
|
|
|
gcc -o xhartae xhartae.o chapters/chapter_0.o chapters/chapter_1.o chapters/chapter_2.o chapters/chapter_3.o
|
|
|
|
splint -weak -warnposix -retvalother -syntax -type chapters/chapter_0.h
|
|
splint -weak -warnposix -retvalother -syntax -type chapters/chapter_0.c
|
|
splint -weak -warnposix -retvalother -syntax -type chapters/chapter_1.h
|
|
splint -weak -warnposix -retvalother -syntax -type chapters/chapter_1.c
|
|
splint -weak -warnposix -retvalother -syntax -type chapters/chapter_2.h
|
|
splint -weak -warnposix -retvalother -syntax -type chapters/chapter_2.c
|
|
splint -weak -warnposix -retvalother -syntax -type chapters/chapter_3.h
|
|
splint -weak -warnposix -retvalother -syntax -type chapters/chapter_3.c
|
|
splint -weak -warnposix -retvalother -syntax -type xhartae.c
|
|
|
|
exit
|