aboutsummaryrefslogtreecommitdiff
path: root/compile.sh
blob: 2d5136bbc6d6bd0987398cb8be9a8e8601773859 (plain) (blame)
1
2
3
4
5
6
7
#!/bin/bash

set -xe

gcc -std=gnu17 -Wall -Wextra -Wpedantic -Wno-comment -Wno-unused-function -Wno-unused-variable -Werror -Ofast -o xighlight xighlight.c

exit