8 lines
163 B
Bash
8 lines
163 B
Bash
#!/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
|