aboutsummaryrefslogtreecommitdiff
path: root/tools/build.sh
blob: a9ed3bc7425d4f0954cee88e67f03aa9635dfb31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

clang-format -i themes.c

# Linux
cc -std=c89 -DDEBUG -Wall -Wpedantic -Wshadow -Wextra -Werror=implicit-int -Werror=incompatible-pointer-types -Werror=int-conversion -Wvla -g -Og -fsanitize=address -fsanitize=undefined -o themes themes.c

# ./themes ../themes/apollo.svg

cat ../themes/apollo.svg | ./themes

rm ./themes