8 lines
136 B
Bash
Executable File
8 lines
136 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -xe
|
|
|
|
gcc -std=gnu99 -Wall -Wno-comment -Wno-unused-variable -Wno-unused-function -Ofast -o xarbon xarbon.c -lpng
|
|
|
|
exit
|