4 lines
109 B
Bash
4 lines
109 B
Bash
#!/bin/bash
|
|
cd "$(dirname "$0")"
|
|
echo "Compiling STB's image I/O library..."
|
|
gcc -c ./*.c -I ../include/ -lm
|