diff options
| author | iceyrazor <iceyrazor@mailfence.com> | 2026-07-23 02:50:26 -0500 |
|---|---|---|
| committer | iceyrazor <iceyrazor@mailfence.com> | 2026-07-23 02:50:26 -0500 |
| commit | 66b8519627d3ec3f43c041d7d7a9a86331593765 (patch) | |
| tree | b58d9024ac187277ed05ae43573c904bf6fda3dc /build.sh | |
| parent | e82bf059815a58594e14045b35df5d267c5ffe23 (diff) | |
removed src/ from build.sh. makes it better to auto complete.
added frame_delay var for sdl screen.
Diffstat (limited to 'build.sh')
| -rwxr-xr-x | build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -14,8 +14,8 @@ shift $((OPTIND-1)) [ "${1:-}" = "--" ] && shift if [ "$1" ]; then - printf -- "\n\nmaking src %s\n" "$1" - file="src/$1" + printf -- "\n\nmaking %s\n" "$1" + file="$1" clang -o bin/$(basename $file | sed 's/.c$//') $file $LIB `sdl2-config --cflags --libs` -lm $DEBUG else for file in src/*; do |
