diff options
author | dweller <dweller@cabin.digital> | 2024-07-31 02:37:41 +0300 |
---|---|---|
committer | dweller <dweller@cabin.digital> | 2024-07-31 02:37:41 +0300 |
commit | 6c080c486f987ba30e7efe209f1310c6cfca0beb (patch) | |
tree | b18984337e4c53cd1b83a33701c875e0cacfa81f /example/build.sh |
Diffstat (limited to 'example/build.sh')
-rwxr-xr-x | example/build.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/example/build.sh b/example/build.sh new file mode 100755 index 0000000..26383e2 --- /dev/null +++ b/example/build.sh @@ -0,0 +1,7 @@ +#!/bin/sh -e + +cc -std=c89 -Wall -Wextra -pedantic -O3 ../bin2c.c -o bin2c +./bin2c image.tga +cc -std=c89 -Wall -Wextra -pedantic -O3 example.c -o example + +./example |